Fix typo on variable name

This commit is contained in:
Pablo Suárez Hernández 2018-09-06 11:17:58 +01:00
parent dc6d1d7d6b
commit f739b6f995
No known key found for this signature in database
GPG Key ID: A9683F02B512C911

View File

@ -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:])