added suport rsync protocol (#12197)

* added suport rsync protocol

* use startswith method for safety
This commit is contained in:
peter.jang 2016-04-09 00:42:07 +09:00 committed by Brian Coca
parent d29b833cb1
commit 65856f2231

View file

@ -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, )