Fix for accelerate when ansible_ssh_user is specified

This commit is contained in:
bennojoy
2013-09-25 19:24:54 +05:30
parent 776fc044dd
commit 70a9a797fa
2 changed files with 9 additions and 1 deletions

View File

@@ -571,6 +571,11 @@ class Runner(object):
actual_private_key_file = inject.get('ansible_ssh_private_key_file', self.private_key_file)
if self.accelerate and actual_transport != 'local':
#Fix to get the inventory name of the host to accelerate plugin
if inject.get('ansible_ssh_host', None):
self.accelerate_inventory_host = host
else:
self.accelerate_inventory_host = None
# if we're using accelerated mode, force the
# transport to accelerate
actual_transport = "accelerate"