added suport rsync protocol (#12197)
* added suport rsync protocol * use startswith method for safety
This commit is contained in:
parent
d29b833cb1
commit
65856f2231
1 changed files with 4 additions and 0 deletions
|
@ -51,6 +51,10 @@ class ActionModule(ActionBase):
|
||||||
''' formats rsync rsh target, escaping ipv6 addresses if needed '''
|
''' formats rsync rsh target, escaping ipv6 addresses if needed '''
|
||||||
|
|
||||||
user_prefix = ''
|
user_prefix = ''
|
||||||
|
|
||||||
|
if path.startswith('rsync://'):
|
||||||
|
return path
|
||||||
|
|
||||||
if user:
|
if user:
|
||||||
user_prefix = '%s@' % (user, )
|
user_prefix = '%s@' % (user, )
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue