mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
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
This commit is contained in:
parent
9801ec5f1a
commit
23ffccd5d7
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user