diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-12-16 09:26:04 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-12-16 01:08:34 +0100 |
commit | d62de8d83e451a8c562dd59d8599c2a325c7ac1f (patch) | |
tree | 807b7af6f788410341fc3af3c45662cdc589a2a0 | |
parent | 77a551d613059fd2df0fbfbd86f206c2b59e91a7 (diff) | |
download | samba-d62de8d83e451a8c562dd59d8599c2a325c7ac1f.tar.gz samba-d62de8d83e451a8c562dd59d8599c2a325c7ac1f.tar.bz2 samba-d62de8d83e451a8c562dd59d8599c2a325c7ac1f.zip |
lib/param: Set s4 "host msdfs = true" by default
This matches the s3 loadparm, and makes this feature available
by default for our users in a DC environment. (This is needed
for the correct operation of GPOs).
Andrew Bartlett
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Fri Dec 16 01:08:34 CET 2011 on sn-devel-104
-rw-r--r-- | lib/param/loadparm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 37d4d0ff0b..8ed9ced221 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -3285,6 +3285,8 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx) lpcfg_do_global_parameter(lp_ctx, "max mux", "50"); lpcfg_do_global_parameter(lp_ctx, "max xmit", "12288"); + lpcfg_do_global_parameter(lp_ctx, "host msdfs", "true"); + lpcfg_do_global_parameter(lp_ctx, "password level", "0"); lpcfg_do_global_parameter(lp_ctx, "LargeReadwrite", "True"); lpcfg_do_global_parameter(lp_ctx, "server min protocol", "CORE"); |