From 33bc08e267756d45518a4dde5aedf17780ebf8aa Mon Sep 17 00:00:00 2001 From: Elisiano Petrini Date: Thu, 4 Mar 2021 14:58:05 -0500 Subject: [PATCH 1/2] Changes the default behavior of ssh pipelining to false. This seems reasonable since in most cases this playbook is ran locally Fixes #93 --- ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index d7af23a..2ad8ee9 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -3,5 +3,5 @@ nocows = True roles_path = ./roles:/etc/ansible/roles [ssh_connection] -pipelining = True +pipelining = False control_path = /tmp/ansible-ssh-%%h-%%p-%%r From d7991d5f23436ebb7397842c733727d99c1e9c28 Mon Sep 17 00:00:00 2001 From: Elisiano Petrini Date: Thu, 4 Mar 2021 15:21:42 -0500 Subject: [PATCH 2/2] Removing ssh section completely --- ansible.cfg | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ansible.cfg b/ansible.cfg index 2ad8ee9..1b00cf9 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,7 +1,3 @@ [defaults] nocows = True roles_path = ./roles:/etc/ansible/roles - -[ssh_connection] -pipelining = False -control_path = /tmp/ansible-ssh-%%h-%%p-%%r