mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix for accelerate when ansible_ssh_user is specified
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user