From 6ce745b8c0bb55f5a2f1d9faeee5ae2bb4125da5 Mon Sep 17 00:00:00 2001 From: test-ansible Date: Mon, 16 Aug 2021 16:27:42 +0000 Subject: [PATCH] Instruqt Example --- plugins/modules/acl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/modules/acl.py b/plugins/modules/acl.py index 7ce8277..a2e3d6d 100644 --- a/plugins/modules/acl.py +++ b/plugins/modules/acl.py @@ -190,6 +190,7 @@ def build_command(module, mode, path, follow, default, recursive, recalculate_ma '''Builds and returns a getfacl/setfacl command.''' if mode == 'set': cmd = [module.get_bin_path('setfacl', True)] + cmd.extend(['-m', entry]) elif mode == 'rm': cmd = [module.get_bin_path('setfacl', True)] cmd.extend(['-x', entry])