From 132d3835651d32e81a1a02b238e82a5c369c5edc Mon Sep 17 00:00:00 2001 From: Hideki Saito Date: Sat, 12 Mar 2022 13:20:20 +0900 Subject: [PATCH] DNM this is a test for CI behavior Signed-off-by: Hideki Saito --- plugins/modules/synchronize.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/synchronize.py b/plugins/modules/synchronize.py index 86cf360..e22a0d6 100644 --- a/plugins/modules/synchronize.py +++ b/plugins/modules/synchronize.py @@ -430,8 +430,8 @@ def main(): except ValueError: module.fail_json(msg='Could not determine controller hostname for rsync to send to') else: - source = module.params['src'] - dest = module.params['dest'] + source = '"' + module.params['src'] + '"' + dest = '"' + module.params['dest'] + '"' dest_port = module.params['dest_port'] delete = module.params['delete'] private_key = module.params['private_key']