mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Adding a hyphen in the perms pattern section, since doing something like
go=- is a quick way to strip all permissions for non-owners.
This commit is contained in:
parent
01e78bd39b
commit
901d349f45
1 changed files with 1 additions and 1 deletions
|
@ -929,7 +929,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