Default to using a ControlMaster connection
This commit is contained in:
parent
aa18e66987
commit
7f6359b143
1 changed files with 4 additions and 0 deletions
|
@ -48,6 +48,10 @@ class SSHConnection(object):
|
||||||
extra_args = os.getenv("ANSIBLE_SSH_ARGS", None)
|
extra_args = os.getenv("ANSIBLE_SSH_ARGS", None)
|
||||||
if extra_args is not None:
|
if extra_args is not None:
|
||||||
self.common_args += shlex.split(extra_args)
|
self.common_args += shlex.split(extra_args)
|
||||||
|
else:
|
||||||
|
self.common_args += ["-o", "ControlMaster=auto",
|
||||||
|
"-o", "ControlPersist=60s",
|
||||||
|
"-o", "ControlPath=/tmp/ansible-ssh-%h-%p-%r"]
|
||||||
self.userhost = "%s@%s" % (self.runner.remote_user, self.host)
|
self.userhost = "%s@%s" % (self.runner.remote_user, self.host)
|
||||||
|
|
||||||
return self
|
return self
|
||||||
|
|
Loading…
Reference in a new issue