diff options
author | Michael Adam <obnox@samba.org> | 2013-09-02 17:36:59 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-10 23:30:19 +0200 |
commit | de3bc10ef69f23e7dab9fc3f6990bb403824b14e (patch) | |
tree | ca062e342d47a722d0e66bb0e99e663090e29b49 | |
parent | c8c0632c871e838fc4465b2a69b4e059e9a126c0 (diff) | |
download | samba-de3bc10ef69f23e7dab9fc3f6990bb403824b14e.tar.gz samba-de3bc10ef69f23e7dab9fc3f6990bb403824b14e.tar.xz samba-de3bc10ef69f23e7dab9fc3f6990bb403824b14e.zip |
loadparm: add new parameter "acl allow execute always"
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
-rw-r--r-- | lib/param/param_functions.c | 1 | ||||
-rw-r--r-- | lib/param/param_table.c | 10 | ||||
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/param/loadparm.c | 1 |
4 files changed, 13 insertions, 0 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index fed2e95bf7..61f00448ca 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -132,6 +132,7 @@ FN_LOCAL_BOOL(afs_share, bAfs_Share) FN_LOCAL_BOOL(acl_check_permissions, bAclCheckPermissions) FN_LOCAL_BOOL(acl_group_control, bAclGroupControl) FN_LOCAL_BOOL(acl_map_full_control, bAclMapFullControl) +FN_LOCAL_BOOL(acl_allow_execute_always, bAclAllowExecuteAlways) FN_LOCAL_INTEGER(defaultcase, iDefaultCase) FN_LOCAL_INTEGER(minprintspace, iMinPrintSpace) FN_LOCAL_INTEGER(printing, iPrinting) 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 @@ -904,6 +904,16 @@ static struct parm_struct parm_table[] = { .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, .p_class = P_LOCAL, diff --git a/source3/include/proto.h b/source3/include/proto.h index df65711d65..804575a2b0 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1330,6 +1330,7 @@ bool lp_afs_share(int ); bool lp_acl_check_permissions(int ); bool lp_acl_group_control(int ); bool lp_acl_map_full_control(int ); +bool lp_acl_allow_execute_always(int); bool lp_durable_handles(int); int lp_create_mask(int ); int lp_force_create_mode(int ); diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 229ebd8bd1..b9945ac8b9 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -264,6 +264,7 @@ static struct loadparm_service sDefault = .bAclCheckPermissions = true, .bAclMapFullControl = true, .bAclGroupControl = false, + .bAclAllowExecuteAlways = false, .bChangeNotify = true, .bKernelChangeNotify = true, .iallocation_roundup_size = SMB_ROUNDUP_ALLOCATION_SIZE, |