diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-02 16:15:27 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-23 15:02:26 +0200 |
commit | a778662da8b1dfc65bde55644703f2a3146ef7a8 (patch) | |
tree | f82c688633b91dc884d817cd45d35eeed1015bea /selftest/target | |
parent | 8518dd6406c0132dfd8c44e084c2b39792974f2c (diff) | |
download | samba-a778662da8b1dfc65bde55644703f2a3146ef7a8.tar.gz samba-a778662da8b1dfc65bde55644703f2a3146ef7a8.tar.bz2 samba-a778662da8b1dfc65bde55644703f2a3146ef7a8.zip |
s4-provision: set POSIX ACLs to for use with the smbd file server (s3fs)
This handles the fact that smbd will rarely override the POSIX ACL enforced by
the kernel. This has caused issues with the creation of group policies by
other members of the Domain Admins group.
Andrew Bartlett
Diffstat (limited to 'selftest/target')
-rw-r--r-- | selftest/target/Samba4.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/selftest/target/Samba4.pm b/selftest/target/Samba4.pm index 248a7259f7..7ac337425b 100644 --- a/selftest/target/Samba4.pm +++ b/selftest/target/Samba4.pm @@ -534,6 +534,7 @@ sub provision_raw_prepare($$$$$$$$$$) push (@provision_options, "--server-role=\"$ctx->{server_role}\""); push (@provision_options, "--function-level=\"$ctx->{functional_level}\""); push (@provision_options, "--dns-backend=BIND9_DLZ"); + if ($use_ntvfs) { push (@provision_options, "--use-ntvfs"); } @@ -1205,7 +1206,7 @@ sub provision_fl2000dc($$) "samba2000.example.com", "2000", "locDCpass5", - undef, "", 1); + undef, "", "", 1); unless($self->add_wins_config("$prefix/private")) { warn("Unable to add wins configuration"); |