fix for rsync protocol (#4211)

This commit is contained in:
peter.jang 2016-08-03 03:34:41 +09:00 committed by Matt Clay
parent aa6a7d5789
commit b06f3bbb22

View file

@ -407,10 +407,10 @@ def main():
if ssh_args:
ssh_opts = '%s %s' % (ssh_opts, ssh_args)
if source.startswith('rsync://') and dest.startswith('rsync://'):
if source.startswith('"rsync://') and dest.startswith('"rsync://'):
module.fail_json(msg='either src or dest must be a localhost', rc=1)
if not source.startswith('rsync://') and not dest.startswith('rsync://'):
if not source.startswith('"rsync://') and not dest.startswith('"rsync://'):
if dest_port != 22:
cmd += " --rsh 'ssh %s %s -o Port=%s'" % (private_key, ssh_opts, dest_port)
else: