From e9aa4d0fdf52f383602447bdd08ca25028fec19a Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 22 Aug 2016 13:04:13 +0300 Subject: [PATCH] Add ansible.cfg Pipelining makes ansible run tasks much faster, and as of Ansible 2.0 or 2.1 or so, it now works on older hosts that have requiretty in their sudo config[0]. Also, disable the creation of those stupid retry files. [0] https://github.com/ansible/ansible/pull/13200 --- ansible.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ansible.cfg diff --git a/ansible.cfg b/ansible.cfg new file mode 100644 index 0000000..1172958 --- /dev/null +++ b/ansible.cfg @@ -0,0 +1,3 @@ +[defaults] +pipelining=True +retry_files_enabled=False