1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

r20689: "pdc" and "bdc" have been replaced by "domain controller"

This commit is contained in:
Simo Sorce 2007-01-11 23:09:57 +00:00 committed by Gerald (Jerry) Carter
parent 3dfcd9f807
commit 6976f283fc
3 changed files with 5 additions and 9 deletions

2
NEWS
View File

@ -55,7 +55,7 @@ The 'security' parameter has been split up. It is now only used to choose
between the 'user' and 'share' security levels (the latter is not supported
in Samba 4 yet). The other values of this option and the 'domain master' and
'domain logons' parameters have been merged into a 'server role' parameter
that can be either 'bdc', 'pdc', 'member server' or 'standalone'. Note that
that can be either 'domain controller', 'member server' or 'standalone'. Note that
member server support does not work yet.
The following parameters have been removed:

View File

@ -497,13 +497,9 @@ function upgrade_smbconf(oldconf,mark)
}
if (oldconf.get("domain logons") == "True") {
if (oldconf.get("domain master") == "True") {
newconf.set("server role", "pdc");
} else {
newconf.set("server role", "bdc");
}
newconf.set("server role", "domain controller");
} else {
if (oldconf.get("domain master") == "True") {
if (oldconf.get("security") == "user") {
newconf.set("server role", "standalone");
} else {
newconf.set("server role", "member server");

View File

@ -54,7 +54,7 @@ if (form['submit'] == "Migrate") {
f.display();
} else if (!provision_validate(subobj, writefln)) {
f.display();
} else if (strupper(lp.get("server role")) == "PDC") {
} else if (strupper(lp.get("server role")) == "domain controller") {
writefln("You need to set 'server role' to 'member server' before starting the migration process");
} else {
var creds = credentials_init();
@ -104,7 +104,7 @@ You need to do the following to complete the process:
<ul>
<li>Install the <b>@@zonepath</b> zone file into your bind install, and restart bind
<li>Change your smb.conf to set "server role = pdc"
<li>Change your smb.conf to set "server role = domain controller"
<li>Shutdown your existing PDC and any other DCs
<li>Restart smbd
</ul>