mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #14191 from paulcalabro/devel
Added hyphen (-) as a valid character for permissions
This commit is contained in:
commit
0c237c4531
1 changed files with 1 additions and 1 deletions
|
@ -928,7 +928,7 @@ class AnsibleModule(object):
|
||||||
def _symbolic_mode_to_octal(self, path_stat, symbolic_mode):
|
def _symbolic_mode_to_octal(self, path_stat, symbolic_mode):
|
||||||
new_mode = stat.S_IMODE(path_stat.st_mode)
|
new_mode = stat.S_IMODE(path_stat.st_mode)
|
||||||
|
|
||||||
mode_re = re.compile(r'^(?P<users>[ugoa]+)(?P<operator>[-+=])(?P<perms>[rwxXst]*|[ugo])$')
|
mode_re = re.compile(r'^(?P<users>[ugoa]+)(?P<operator>[-+=])(?P<perms>[rwxXst-]*|[ugo])$')
|
||||||
for mode in symbolic_mode.split(','):
|
for mode in symbolic_mode.split(','):
|
||||||
match = mode_re.match(mode)
|
match = mode_re.match(mode)
|
||||||
if match:
|
if match:
|
||||||
|
|
Loading…
Reference in a new issue