Commit 0aec8244 by James Cammarata

Merge pull request #8738 from bcoca/acl_tilde_expansion

now acl expands tildes
parents 77ef324a f6e10b58
......@@ -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')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment