From 2d3af2f7bc8e5549cfbb587189d34dc4351630fe Mon Sep 17 00:00:00 2001 From: Jean-Marie Mineau Date: Mon, 5 Oct 2020 09:52:00 +0200 Subject: [PATCH] add ansible config --- ansible.cfg | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ansible.cfg diff --git a/ansible.cfg b/ansible.cfg new file mode 100644 index 0000000..70d340f --- /dev/null +++ b/ansible.cfg @@ -0,0 +1,38 @@ +# Ansible configuration, copy from the AURORE config. + +[defaults] + +# Do not create .retry files +retry_files_enabled = False + +# Use inventory +inventory = ./hosts + +# Custom header in templates +ansible_managed = Ansible managed, modified on %Y-%m-%d %H:%M:%S by {uid} + +# Do not use cows (with cowsay) +nocows = 1 + +# Do more parallelism +forks = 15 + +# Some SSH connection will take time +timeout = 60 + +[privilege_escalation] + +# Use sudo to get priviledge access +become = True + +# Ask for password +become_ask_pass = True + +[diff] + +# TO know what changed +always = yes + + +[ssh_connection] +pipelining = True