mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 05:40:23 -07:00
Merge pull request #8738 from bcoca/acl_tilde_expansion
now acl expands tildes
This commit is contained in:
commit
0aec8244c8
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue