Merge pull request #5669 from mscherer/fix_synchronize_local

Make synchronize module work better with local transport, fix #5668
pull/4420/head
Michael DeHaan 2014-01-17 14:20:22 -08:00
commit e3e6f02835
1 changed files with 1 additions and 1 deletions

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)