1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

r20554: - use ${ROOTDN} for the rootDomainNamingContext

- the ${CONFIGDN} is a child of the ${ROOTDN}

metze
(This used to be commit ebbd8a83c9)
This commit is contained in:
Stefan Metzmacher
2007-01-05 16:19:00 +00:00
committed by Gerald (Jerry) Carter
parent 8b70764038
commit 2c266fb217
2 changed files with 3 additions and 2 deletions

View File

@ -697,7 +697,8 @@ function provision_guess()
subobj.DNSDOMAIN);
rdn_list = split(".", subobj.DNSDOMAIN);
subobj.BASEDN = "DC=" + join(",DC=", rdn_list);
subobj.CONFIGDN = "CN=Configuration," + subobj.BASEDN;
subobj.ROOTDN = subobj.ROOTDN;
subobj.CONFIGDN = "CN=Configuration," + subobj.ROOTDN;
subobj.SCHEMADN = "CN=Schema," + subobj.CONFIGDN;
subobj.LDAPBACKEND = "users.ldb";
subobj.LDAPMODULE = "entryUUID";