This commit is contained in:
Mikhail Emelchenkov 2025-08-18 12:31:05 +00:00 committed by GitHub
commit 6aa4829513
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -449,8 +449,8 @@ def main():
except ValueError: except ValueError:
module.fail_json(msg='Could not determine controller hostname for rsync to send to') module.fail_json(msg='Could not determine controller hostname for rsync to send to')
else: else:
source = module.params['src'] source = '"' + module.params['src'] + '"'
dest = module.params['dest'] dest = '"' + module.params['dest'] + '"'
dest_port = module.params['dest_port'] dest_port = module.params['dest_port']
delete = module.params['delete'] delete = module.params['delete']
private_key = module.params['private_key'] private_key = module.params['private_key']