From dc419a696acea935586ad69c787e959b6f78ded8 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Mon, 5 Oct 2015 18:29:49 +0200 Subject: [PATCH] Ansible configuration added So it searches for 'hosts' in the current directory. --- ansible.cfg | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 ansible.cfg diff --git a/ansible.cfg b/ansible.cfg new file mode 100644 index 0000000..5931821 --- /dev/null +++ b/ansible.cfg @@ -0,0 +1,24 @@ +# see http://docs.ansible.com/intro_configuration.html +[defaults] + +# Do not show skipped hosts +display_skipped_hosts = False + +# Look for the inventory of hosts in the current directory +hostfile = ./hosts + +# Connect as 'root' by default via SSH +remote_user = root + +# Do not use cowsay +nocows = 1 + +# Connect to up to 50 server in parallel +forks = 50 + +# Speed improvement, but may break sudo with requiretty +pipelining = True + +# Log actions +log_path = ./log +