mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
fix breakage from new recursive=True arg to chmod
This commit is contained in:
parent
80e7fbff75
commit
4241106ad2
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue