From c3f5e47559bd19010a6925d0e8336d5213f1a7c0 Mon Sep 17 00:00:00 2001 From: counterweight Date: Fri, 11 Sep 2026 17:42:49 +0200 Subject: [PATCH] add ansible.cfg --- ansible/ansible.cfg | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ansible/ansible.cfg diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg new file mode 100644 index 0000000..56620fa --- /dev/null +++ b/ansible/ansible.cfg @@ -0,0 +1,14 @@ +[defaults] +inventory = inventory.ini +roles_path = roles +collections_path = collections +interpreter_python = auto_silent +stdout_callback = yaml +retry_files_enabled = False +host_key_checking = True +forks = 10 +# vault_password_file = .vault_pass # uncomment in Stage 2 + +[ssh_connection] +pipelining = True +ssh_args = -o ControlMaster=auto -o ControlPersist=300s