From d588860b08e5f2f246b34e00cc663e0781e11903 Mon Sep 17 00:00:00 2001 From: test-ansible <89017344+test-ansible@users.noreply.github.com> Date: Mon, 16 Aug 2021 17:03:42 +0530 Subject: [PATCH] Update acl.py --- 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])