From ac1948c04c11c035cedcefeb07e1ef4235e1b3a2 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Tue, 29 Apr 2014 15:46:48 -0500 Subject: [PATCH] Minor tweak to rsync_path construction in synchronize module Fixes #7182 --- library/files/synchronize | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/files/synchronize b/library/files/synchronize index e4d789790b4..0fea4003203 100644 --- a/library/files/synchronize +++ b/library/files/synchronize @@ -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 = '<>'