diff options
author | Gerald Carter <jerry@samba.org> | 2006-03-01 15:23:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:10:53 -0500 |
commit | 1438ee5359f012e32de8ef51f129fce29b234e6d (patch) | |
tree | 69a7ec0335faaf2e42860e63837ec2963e928e86 | |
parent | 4f636b57c1330677db3ff17fd91b880cec38eb2c (diff) | |
download | samba-1438ee5359f012e32de8ef51f129fce29b234e6d.tar.gz samba-1438ee5359f012e32de8ef51f129fce29b234e6d.tar.bz2 samba-1438ee5359f012e32de8ef51f129fce29b234e6d.zip |
r13772: More default changes
* winbind nested groups = yes
* host msdfs = ye
* msdfs root = yes
(This used to be commit b5f01559e1f75c427e59646ee79e18433806213e)
-rw-r--r-- | source3/param/loadparm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 8c8afbfbe7..65daf041e4 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -572,7 +572,7 @@ static service sDefault = { False, /* bInheritPerms */ False, /* bInheritACLS */ False, /* bInheritOwner */ - False, /* bMSDfsRoot */ + True, /* bMSDfsRoot */ False, /* bUseClientDriver */ False, /* bDefaultDevmode */ False, /* bForcePrintername */ @@ -1627,7 +1627,7 @@ static void init_globals(BOOL first_time_only) Globals.bWinbindEnumGroups = True; Globals.bWinbindUseDefaultDomain = False; Globals.bWinbindTrustedDomainsOnly = False; - Globals.bWinbindNestedGroups = False; + Globals.bWinbindNestedGroups = True; Globals.winbind_max_idle_children = 3; Globals.szWinbindNssInfo = str_list_make("template", NULL); Globals.bWinbindRefreshTickets = False; @@ -1647,6 +1647,7 @@ static void init_globals(BOOL first_time_only) string_set(&Globals.smb_ports, SMB_PORTS); Globals.bEnablePrivileges = True; + Globals.bHostMSDfs = True; Globals.bASUSupport = False; /* User defined shares. */ |