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])