Change synchronize module plugin to be backwards compatible with RSync 2.6.9 with regard to handling IPv6 addresses.
This commit is contained in:
parent
cc6627cdd6
commit
6f3f4dff7a
1 changed files with 10 additions and 4 deletions
|
@ -47,10 +47,13 @@ class ActionModule(ActionBase):
|
|||
def _process_origin(self, host, path, user):
|
||||
|
||||
if host not in C.LOCALHOST:
|
||||
userPart = ''
|
||||
if user:
|
||||
return '%s@[%s]:%s' % (user, host, path)
|
||||
userPart = '%s@' % (user, )
|
||||
if ":" in host:
|
||||
return '[%s%s]:%s' % (userPart, host, path)
|
||||
else:
|
||||
return '[%s]:%s' % (host, path)
|
||||
return '%s%s:%s' % (userPart, host, path)
|
||||
|
||||
if ':' not in path and not path.startswith('/'):
|
||||
path = self._get_absolute_path(path=path)
|
||||
|
@ -59,10 +62,13 @@ class ActionModule(ActionBase):
|
|||
def _process_remote(self, host, path, user):
|
||||
transport = self._play_context.connection
|
||||
if host not in C.LOCALHOST or transport != "local":
|
||||
userPart = ''
|
||||
if user:
|
||||
return '%s@[%s]:%s' % (user, host, path)
|
||||
userPart = '%s@' % (user, )
|
||||
if ":" in host:
|
||||
return '[%s%s]:%s' % (userPart, host, path)
|
||||
else:
|
||||
return '[%s]:%s' % (host, path)
|
||||
return '%s%s:%s' % (userPart, host, path)
|
||||
|
||||
if ':' not in path and not path.startswith('/'):
|
||||
path = self._get_absolute_path(path=path)
|
||||
|
|
Loading…
Reference in a new issue