r17330: Enable the partitions module.
authorAndrew Bartlett <abartlet@samba.org>
Mon, 31 Jul 2006 01:00:18 +0000 (01:00 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:15:15 +0000 (14:15 -0500)
This module redirects various samdb requests into different modules,
depending on the prefix.  It also makes moving to an LDAP backend
easier, as it is just a different partition backend.

This adds yet another stage to the provision process, as we must setup
the partitions before we setup the magic attributes.

Andrew Bartlett

source/scripting/libjs/provision.js
source/setup/provision_init.ldif
source/setup/provision_partitions.ldif [new file with mode: 0644]

index c4ffab6a3070f56498738396fb31c6ad72244f96..232d15d66f6d3a24b429fad6b257fb3fe1f0a2c7 100644 (file)
@@ -479,8 +479,11 @@ function provision(subobj, message, blank, paths, session_info, credentials)
        message("Setting up hklm.ldb\n");
        setup_ldb("hklm.ldif", info, paths.hklm);
 
+       message("Setting up sam.ldb partitions\n");
+       setup_ldb("provision_partitions.ldif", info, paths.samdb);
+
        message("Setting up sam.ldb attributes\n");
-       setup_ldb("provision_init.ldif", info, paths.samdb);
+       setup_ldb("provision_init.ldif", info, paths.samdb, NULL, false);
        message("Erasing data from partitions\n");
        ldb_erase_partitions(info, paths.samdb);
        
index a46c86aadcb3fe4ab566ff2afc288549dabf5df3..91405b2d4c2a55f6bfa02bfaf244efca9d163187 100644 (file)
@@ -55,14 +55,10 @@ passwordAttribute: lmPwdHash
 passwordAttribute: sambaLMPwdHistory
 passwordAttribute: krb5key
 
-
 # the rootDSE module looks in this record for its base data
 dn: cn=ROOTDSE
 subschemaSubentry: CN=Aggregate,CN=Schema,CN=Configuration,${BASEDN}
 dsServiceName: CN=NTDS Settings,CN=${NETBIOSNAME},CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,${BASEDN}
-namingContexts: ${BASEDN}
-namingContexts: CN=Configuration,${BASEDN}
-namingContexts: CN=Schema,CN=Configuration,${BASEDN}
 defaultNamingContext: ${BASEDN}
 rootDomainNamingContext: ${BASEDN}
 configurationNamingContext: CN=Configuration,${BASEDN}
@@ -78,13 +74,3 @@ isSynchronized: TRUE
 vendorName: Samba Team (http://samba.org)
 vendorVersion: ${VERSION}
 
-#Add modules to the list to activate them by default
-#beware often order is important
-#
-# Some Known ordering constraints:
-# - rootdse must be first, as it makes redirects from "" -> cn=rootdse
-# - samldb must be before password_hash, because password_hash checks that the objectclass is of type person (filled in by samldb)
-
-dn: @MODULES
-@LIST: rootdse,kludge_acl,paged_results,server_sort,extended_dn,asq,samldb,objectclass,password_hash,operational,objectguid,rdn_name
-
diff --git a/source/setup/provision_partitions.ldif b/source/setup/provision_partitions.ldif
new file mode 100644 (file)
index 0000000..58fea65
--- /dev/null
@@ -0,0 +1,19 @@
+dn: @PARTITION
+partition: CN=Schema,CN=Configuration,${BASEDN}:schema.ldb
+partition: CN=Configuration,${BASEDN}:configuration.ldb
+partition: CN=Templates,${BASEDN}:templates.ldb
+partition: ${BASEDN}:${LDAPBACKEND}
+replicateEntries: @SUBCLASSES
+replicateEntries: @ATTRIBUTES
+replicateEntries: @INDEXLIST
+
+#Add modules to the list to activate them by default
+#beware often order is important
+#
+# Some Known ordering constraints:
+# - rootdse must be first, as it makes redirects from "" -> cn=rootdse
+# - samldb must be before password_hash, because password_hash checks that the objectclass is of type person (filled in by samldb)
+# - partition must be last
+
+dn: @MODULES
+@LIST: rootdse,kludge_acl,paged_results,server_sort,extended_dn,asq,samldb,objectguid,password_hash,operational,objectclass,rdn_name,partition