1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Make synchronize module work better with local transport, fix #5668

This commit is contained in:
Michael Scherer 2014-01-17 17:07:59 +01:00
parent 3064ca94e9
commit 5c5c8fd7ce

View file

@ -99,7 +99,7 @@ class ActionModule(object):
if options.get('mode', 'push') == 'pull':
(dest_host, src_host) = (src_host, dest_host)
if not dest_host is src_host:
if not dest_host is src_host and self.original_transport != 'local':
user = inject.get('ansible_ssh_user',
self.runner.remote_user)
private_key = inject.get('ansible_ssh_private_key_file', self.runner.private_key_file)