aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ansible.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'ansible.cfg')
-rw-r--r--ansible.cfg12
1 files changed, 0 insertions, 12 deletions
diff --git a/ansible.cfg b/ansible.cfg
deleted file mode 100644
index ee26434..0000000
--- a/ansible.cfg
+++ /dev/null
@@ -1,12 +0,0 @@
-[defaults]
-# Readable output:
-stdout_callback = yaml
-stderr_callback = yaml
-
-[ssh_connection]
-# My connections are too flaky:
-retries = 2
-# I cannot believe ServerAlive* are not set by Ansible by default:
-# https://docs.ansible.com/ansible/latest/reference_appendices/faq.html#how-do-i-get-ansible-to-notice-a-dead-target-in-a-timely-manner
-# Also, forward the SSH agent.
-ssh_extra_args = -o ServerAliveInterval=15 -o ServerAliveCountMax=3 -o ForwardAgent=yes -o StrictHostKeyChecking=no