mirror of
https://github.com/samba-team/samba.git
synced 2025-07-15 16:59:09 +03:00
r23720: Allow the member server to work against an LDAP Backend. Another case
where LDB isn't as strict as OpenLDAP, the self join record contains
duplicate servicePrincipalNames once the DNS name and domain name are
made equal. (Easier to just skip the useless self-join).
Andrew Bartlett
(This used to be commit 49ff929be6
)
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
cc0756c302
commit
967866f170
@ -700,6 +700,11 @@ function provision(subobj, message, blank, paths, session_info, credentials, lda
|
||||
message("Setting up sam.ldb users and groups\n");
|
||||
setup_add_ldif("provision_users.ldif", info, samdb, false);
|
||||
|
||||
if (lp.get("server role") == "domain controller") {
|
||||
message("Setting up self join\n");
|
||||
setup_add_ldif("provision_self_join.ldif", info, samdb, false);
|
||||
}
|
||||
|
||||
if (setup_name_mappings(info, samdb) == false) {
|
||||
return false;
|
||||
}
|
||||
@ -769,6 +774,11 @@ function provision_schema(subobj, message, tmp_schema_path, paths)
|
||||
/* Write out a DNS zone file, from the info in the current database */
|
||||
function provision_dns(subobj, message, paths, session_info, credentials)
|
||||
{
|
||||
var lp = loadparm_init();
|
||||
if (lp.get("server role") != "domain controller") {
|
||||
message("No DNS zone required for role %s\n", lp.get("server role"));
|
||||
return;
|
||||
}
|
||||
message("Setting up DNS zone: " + subobj.DNSDOMAIN + " \n");
|
||||
var ldb = ldb_init();
|
||||
ldb.session_info = session_info;
|
||||
|
Reference in New Issue
Block a user