From f6e10b580e10177c0d6c7c22640343c022988ce4 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sun, 24 Aug 2014 19:16:15 -0400 Subject: [PATCH] now acl expands tildes --- library/files/acl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/files/acl b/library/files/acl index 24cd6608033..30c533e006c 100644 --- a/library/files/acl +++ b/library/files/acl @@ -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')