1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-05-29 20:40:59 +00:00

fix breakage from new recursive=True arg to chmod

This commit is contained in:
nitzmahone 2016-03-24 19:47:43 -07:00
parent 80e7fbff75
commit 4241106ad2

View file

@ -66,7 +66,7 @@ class ShellModule(object):
path = self._unquote(path)
return path.endswith('/') or path.endswith('\\')
def chmod(self, mode, path):
def chmod(self, mode, path, recursive=True):
return ''
def remove(self, path, recurse=False):