diff options
| author | Andrew Bartlett <abartlet@samba.org> | 2009-09-20 21:32:16 -0700 | 
|---|---|---|
| committer | Andrew Bartlett <abartlet@samba.org> | 2009-09-20 23:05:30 -0700 | 
| commit | 23ffccd5d7c9a88d479f82043ff1b6efe938cc6a (patch) | |
| tree | 7dfd527bae8cc38d693cf9067bd01a0ad6991a55 /source4/scripting/python | |
| parent | 9801ec5f1af8f3f67461fa09e29213bea06b1c6a (diff) | |
| download | samba-23ffccd5d7c9a88d479f82043ff1b6efe938cc6a.tar.gz samba-23ffccd5d7c9a88d479f82043ff1b6efe938cc6a.tar.bz2 samba-23ffccd5d7c9a88d479f82043ff1b6efe938cc6a.zip  | |
s4:provision Make us Windows 2008 level by defualt again
Also add a note to clarify that this should not be changed without
discussion and consensus.  We don't want this bouncing around.
Paramater support to allow optional selection of Win2003 mode welcomed.
Andrew Bartlett
Diffstat (limited to 'source4/scripting/python')
| -rw-r--r-- | source4/scripting/python/samba/provision.py | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index 8af24f21cf..b00f240257 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -44,7 +44,7 @@ from credentials import Credentials, DONT_USE_KERBEROS  from auth import system_session, admin_session  from samba import version, Ldb, substitute_var, valid_netbios_name  from samba import check_all_substituted -from samba import DS_DOMAIN_FUNCTION_2000, DS_DC_FUNCTION_2008_R2 +from samba import DS_DOMAIN_FUNCTION_2000, DS_DOMAIN_FUNCTION_2008, DS_DC_FUNCTION_2008, DS_DC_FUNCTION_2008_R2  from samba.samdb import SamDB  from samba.idmap import IDmapDB  from samba.dcerpc import security @@ -895,9 +895,10 @@ def setup_samdb(path, setup_path, session_info, credentials, lp,      :note: This will wipe the main SAM database file!      """ -    domainFunctionality = DS_DOMAIN_FUNCTION_2000 -    forestFunctionality = DS_DOMAIN_FUNCTION_2000 -    domainControllerFunctionality = DS_DC_FUNCTION_2008_R2 +    # Do NOT change these default values without discussion with the team and reslease manager.   +    domainFunctionality = DS_DOMAIN_FUNCTION_2008 +    forestFunctionality = DS_DOMAIN_FUNCTION_2008 +    domainControllerFunctionality = DS_DC_FUNCTION_2008      # Also wipes the database      setup_samdb_partitions(path, setup_path, message=message, lp=lp,  | 
