From e09ce0a3a7b61e29a194b382ff01ef8e4cd67f5a Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Tue, 20 Aug 2013 14:37:11 -0500 Subject: [PATCH] Commenting out default ssh arguments line in ansible.cfg Also removing the ControlPath option, as it will now be auto-generated if the ControlPersist option is set in the arguments. --- examples/ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ansible.cfg b/examples/ansible.cfg index acedfb9cda1..44295200e4c 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -106,7 +106,7 @@ filter_plugins = /usr/share/ansible_plugins/filter_plugins # ssh arguments to use # Leaving off ControlPersist will result in poor performance, so use # paramiko on older platforms rather than removing it -ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o ControlPath=/tmp/ansible-ssh-%h-%p-%r +#ssh_args = -o ControlMaster=auto -o ControlPersist=60s # if True, make ansible use scp if the connection type is ssh # (default is sftp)