1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

now acl expands tildes

This commit is contained in:
Brian Coca 2014-08-24 19:16:15 -04:00
parent a419ffdf41
commit f6e10b580e

View file

@ -207,7 +207,7 @@ def main():
supports_check_mode=True,
)
path = module.params.get('name')
path = os.path.expanduser(module.params.get('name'))
entry = module.params.get('entry')
entity = module.params.get('entity')
etype = module.params.get('etype')