From bb2e0613dd1adf6c1742da7851566597e9e7b117 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Mon, 21 Feb 2022 23:53:42 -0500 Subject: [PATCH] galaxy appears to be having issues currently; swapping to use private automation hub --- ansible.cfg | 12 ++++++++++++ ansible.cfg.no_pah | 27 +++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 ansible.cfg.no_pah diff --git a/ansible.cfg b/ansible.cfg index 99dbf76..1eef4b7 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -25,3 +25,15 @@ command_warnings = False pipelining = True ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o PreferredAuthentications=publickey + +[galaxy] +server_list = community_repo,rh-certified_repo + +[galaxy_server.community_repo] +url=https://conjur.thezengarden.net/api/galaxy/content/community/ +token=f16d439354f6747e3e27692469d90f2a7c28051e + +[galaxy_server.rh-certified_repo] +url=https://conjur.thezengarden.net/api/galaxy/content/rh-certified/ +token=f16d439354f6747e3e27692469d90f2a7c28051e + diff --git a/ansible.cfg.no_pah b/ansible.cfg.no_pah new file mode 100644 index 0000000..99dbf76 --- /dev/null +++ b/ansible.cfg.no_pah @@ -0,0 +1,27 @@ +[defaults] +inventory = inventory/hosts +roles_path = roles +collections_path = collections +remote_tmp = /tmp/.ansible-${USER}/tmp +gathering = smart +gather_timeout = 30 +fact_path = facts.d +fact_caching = jsonfile +fact_caching_connection = facts.d +fact_caching_timeout = 300 +retry_files_enabled = False +forks = 40 +timeout = 30 +host_key_checking = False +display_skipped_hosts = False +interpreter_python = auto_silent +bin_ansible_callbacks = True +callback_whitelist = ansible.posix.profile_tasks, ansible.posix.timer +deprecation_warnings = False +command_warnings = False + + +[ssh_connection] +pipelining = True +ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o PreferredAuthentications=publickey +