From e6d00bd2b4b1fd386253b1f8a14eb975c28939ba Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 8 Dec 2023 01:52:12 -0500 Subject: [PATCH] some actual fixes :) --- .gitignore | 2 ++ ansible.cfg | 6 +++--- collections/requirements.yml | 5 +++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 92cba2a..ef7674c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ host_vars +ansible.cfg +collections/ansible_collections/ diff --git a/ansible.cfg b/ansible.cfg index ad1116c..587e102 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -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 diff --git a/collections/requirements.yml b/collections/requirements.yml index e7e84d7..62af71e 100644 --- a/collections/requirements.yml +++ b/collections/requirements.yml @@ -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 ...