mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix typo on variable name
This commit is contained in:
parent
dc6d1d7d6b
commit
f739b6f995
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ def absent(name, acl_type, acl_name='', perms='', recurse=False):
|
|||
ret['result'] = False
|
||||
return ret
|
||||
|
||||
__current_perms = __salt__['acl.getfacl'](name, recursive=rescurse)
|
||||
__current_perms = __salt__['acl.getfacl'](name, recursive=recurse)
|
||||
|
||||
if acl_type.startswith(('d:', 'default:')):
|
||||
_acl_type = ':'.join(acl_type.split(':')[1:])
|
||||
|
|
Loading…
Add table
Reference in a new issue