mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
added suport rsync protocol (#12197)
* added suport rsync protocol * use startswith method for safety
This commit is contained in:
@@ -51,6 +51,10 @@ class ActionModule(ActionBase):
|
||||
''' formats rsync rsh target, escaping ipv6 addresses if needed '''
|
||||
|
||||
user_prefix = ''
|
||||
|
||||
if path.startswith('rsync://'):
|
||||
return path
|
||||
|
||||
if user:
|
||||
user_prefix = '%s@' % (user, )
|
||||
|
||||
|
||||
Reference in New Issue
Block a user