From c7ce0982ff0c5e357fe957c9f929a9bf71deed7c Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Tue, 24 Nov 2015 12:13:35 -0600 Subject: [PATCH] Remove ssh args to ensure pipelining is working The ssh args that we have been carrying are overriding base functionality in Ansible which can cause intermitent issues. To correct this issue I removed our ssh-args which will use the default ssh arguments provided by ansible core. Change-Id: If61d875a58e466ec07cb6818040e83f1612b4f18 Related-Bug: https://github.com/ansible/ansible/pull/9246 Signed-off-by: Kevin Carter --- playbooks/ansible.cfg | 1 - 1 file changed, 1 deletion(-) diff --git a/playbooks/ansible.cfg b/playbooks/ansible.cfg index 4f9dcaca48..72b38bb209 100644 --- a/playbooks/ansible.cfg +++ b/playbooks/ansible.cfg @@ -22,4 +22,3 @@ timeout = 120 [ssh_connection] pipelining = True -ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o TCPKeepAlive=yes -o ServerAliveInterval=5 -o ServerAliveCountMax=3