From de3bc10ef69f23e7dab9fc3f6990bb403824b14e Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 2 Sep 2013 17:36:59 +0200 Subject: loadparm: add new parameter "acl allow execute always" Signed-off-by: Michael Adam Reviewed-by: Volker Lendecke Reviewed-by: David Disseldorp --- lib/param/param_table.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib/param/param_table.c') diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 1b1497cc64..7b32998084 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -903,6 +903,16 @@ static struct parm_struct parm_table[] = { .enum_list = NULL, .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE, }, + { + .label = "acl allow execute always", + .type = P_BOOL, + .p_class = P_LOCAL, + .offset = LOCAL_VAR(bAclAllowExecuteAlways), + .special = NULL, + .enum_list = NULL, + .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE, + }, + { .label = "create mask", .type = P_OCTAL, -- cgit