lib/param: Set s4 "host msdfs = true" by default
authorAndrew Bartlett <abartlet@samba.org>
Thu, 15 Dec 2011 22:26:04 +0000 (09:26 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 16 Dec 2011 00:08:34 +0000 (01:08 +0100)
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

lib/param/loadparm.c

index 37d4d0ff0b4962bf588e7b2971441488ce203988..8ed9ced2217a6f7dfa842213945baed22b613f6f 100644 (file)
@@ -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");