mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Minor tweak to rsync_path construction in synchronize module
Fixes #7182
This commit is contained in:
@@ -300,7 +300,7 @@ def main():
|
||||
'StrictHostKeyChecking=no') # need ssh param
|
||||
|
||||
if rsync_path:
|
||||
cmd = cmd + " --rsync-path '%s'" %(rsync_path)
|
||||
cmd = cmd + " --rsync-path=%s" % (rsync_path)
|
||||
if rsync_opts:
|
||||
cmd = cmd + " " + " ".join(rsync_opts)
|
||||
changed_marker = '<<CHANGED>>'
|
||||
|
||||
Reference in New Issue
Block a user