Merge pull request #1072 from dhozac/ansible_ssh_host

Add an ansible_ssh_host inventory variable
pull/1066/merge
Michael DeHaan 12 years ago
commit b75c662ab7

@ -343,10 +343,13 @@ class Runner(object):
actual_host = host
try:
delegate_to = inject.get('delegate_to', None)
alternative_host = inject.get('ansible_ssh_host', None)
if delegate_to is not None:
actual_host = delegate_to
actual_host = delegate_to
elif alternative_host is not None:
actual_host = alternative_host
conn = self.connector.connect(actual_host, port)
if delegate_to is not None:
if delegate_to is not None or alternative_host is not None:
conn._delegate_for = host
except errors.AnsibleConnectionFailed, e:
result = dict(failed=True, msg="FAILED: %s" % str(e))

Loading…
Cancel
Save