Default to 'smart' transport, which will use OpenSSH if it can support ControlPersist.

This commit is contained in:
Michael DeHaan
2013-07-04 16:47:17 -04:00
parent 1683d44d2e
commit c55adc9ac9
3 changed files with 14 additions and 3 deletions

View File

@@ -31,6 +31,7 @@ import sys
import shlex
import pipes
import jinja2
import subprocess
import ansible.constants as C
import ansible.inventory
@@ -169,9 +170,19 @@ class Runner(object):
self.environment = environment
self.complex_args = complex_args
self.error_on_undefined_vars = error_on_undefined_vars
self.callbacks.runner = self
# if the transport is 'smart' see if SSH can support ControlPersist if not use paramiko
# 'smart' is the default since 1.2.1/1.3
if self.transport == 'smart':
cmd = subprocess.Popen(['ssh','-o','ControlPersist'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(out, err) = cmd.communicate()
if "Bad configuration option" in err:
self.transport = "paramiko"
else:
self.transport = "ssh"
# misc housekeeping
if subset and self.inventory._subset is None:
# don't override subset when passed from playbook