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
ansible.cfg
collections/ansible_collections/

View File

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

View File

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