Minor tweak to rsync_path construction in synchronize module
Fixes #7182
This commit is contained in:
parent
45237f270d
commit
ac1948c04c
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ def main():
|
||||||
'StrictHostKeyChecking=no') # need ssh param
|
'StrictHostKeyChecking=no') # need ssh param
|
||||||
|
|
||||||
if rsync_path:
|
if rsync_path:
|
||||||
cmd = cmd + " --rsync-path '%s'" %(rsync_path)
|
cmd = cmd + " --rsync-path=%s" % (rsync_path)
|
||||||
if rsync_opts:
|
if rsync_opts:
|
||||||
cmd = cmd + " " + " ".join(rsync_opts)
|
cmd = cmd + " " + " ".join(rsync_opts)
|
||||||
changed_marker = '<<CHANGED>>'
|
changed_marker = '<<CHANGED>>'
|
||||||
|
|
Loading…
Reference in a new issue