From 1f29baa97c7a840705f5a65fa54aa4d1e787085f Mon Sep 17 00:00:00 2001 From: test-ansible <89017344+test-ansible@users.noreply.github.com> Date: Mon, 16 Aug 2021 21:49:41 +0530 Subject: [PATCH] Revert "Update acl.py" --- plugins/modules/acl.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/modules/acl.py b/plugins/modules/acl.py index a2e3d6d..7ce8277 100644 --- a/plugins/modules/acl.py +++ b/plugins/modules/acl.py @@ -190,7 +190,6 @@ 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])