mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
s4:net Remove warnings for 2000 native mode and Samba4.
We now support 2000 native mode, and so we just need to warn about mixed mode. Andrew Bartlett
This commit is contained in:
parent
d0f52ddac2
commit
86ed5eb892
@ -111,11 +111,11 @@ class cmd_domainlevel(Command):
|
||||
|
||||
if subcommand == "show":
|
||||
self.message("Domain and forest function level for domain '%s'" % domain_dn)
|
||||
if level_forest < DS_DOMAIN_FUNCTION_2003:
|
||||
self.message("\nATTENTION: You run SAMBA 4 on a forest function level lower than Windows 2003 (Native). This isn't supported! Please raise!")
|
||||
if level_domain < DS_DOMAIN_FUNCTION_2003:
|
||||
self.message("\nATTENTION: You run SAMBA 4 on a domain function level lower than Windows 2003 (Native). This isn't supported! Please raise!")
|
||||
if min_level_dc < DS_DOMAIN_FUNCTION_2003:
|
||||
if level_forest == DS_DOMAIN_FUNCTION_2000 and level_domain_mixed != 0:
|
||||
self.message("\nATTENTION: You run SAMBA 4 on a forest function level lower than Windows 2000 (Native). This isn't supported! Please raise!")
|
||||
if level_domain == DS_DOMAIN_FUNCTION_2000 and level_domain_mixed != 0:
|
||||
self.message("\nATTENTION: You run SAMBA 4 on a domain function level lower than Windows 2000 (Native). This isn't supported! Please raise!")
|
||||
if min_level_dc == DS_DOMAIN_FUNCTION_2000 and level_domain_mixed != 0:
|
||||
self.message("\nATTENTION: You run SAMBA 4 on a lowest function level of a DC lower than Windows 2003. This isn't supported! Please step-up or upgrade the concerning DC(s)!")
|
||||
|
||||
self.message("")
|
||||
|
Loading…
Reference in New Issue
Block a user