some actual fixes :)

This commit is contained in:
2023-12-08 01:52:12 -05:00
parent 2994a8f849
commit e6d00bd2b4
3 changed files with 8 additions and 5 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
host_vars host_vars
ansible.cfg
collections/ansible_collections/

View File

@ -1,12 +1,12 @@
[defaults] [defaults]
inventory = inventory/hosts inventory = inventory/hosts
roles_path = /etc/ansible/roles roles_path = roles
collections_path = /etc/ansible/collections collections_path = collections
remote_tmp = /tmp/.ansible-${USER}/tmp remote_tmp = /tmp/.ansible-${USER}/tmp
gathering = smart gathering = smart
gather_timeout = 600 gather_timeout = 600
fact_caching = jsonfile fact_caching = jsonfile
fact_caching_connection = /etc/ansible/facts.d fact_caching_connection = /tmp/.ansible_facts
fact_caching_timeout = 300 fact_caching_timeout = 300
retry_files_enabled = False retry_files_enabled = False
forks = 40 forks = 40

View File

@ -1,13 +1,14 @@
--- ---
collections: collections:
# Our Collections
- name: jchristianh.basos - name: jchristianh.basos
source: https://github.com/jchristianh-ansible-collections/baseos.git source: https://github.com/jchristianh-ansible-collections/baseos.git
type: git type: git
version: main version: main
# External Collections
- name: community.general - name: community.general
source: https://galaxy.ansible.com - name: ansible.posix
... ...