fix for rsync protocol support (#16756)

pull/17732/head
peter.jang 8 years ago committed by jctanner
parent 0f4c56a697
commit 0d94d39689

@ -32,6 +32,9 @@ class ActionModule(ActionBase):
def _get_absolute_path(self, path):
original_path = path
if path.startswith('rsync://'):
return path
if self._task._role is not None:
path = self._loader.path_dwim_relative(self._task._role._role_path, 'files', path)
else:

Loading…
Cancel
Save