Be consistant about --ldap-backend-type
authorAndrew Bartlett <abartlet@samba.org>
Wed, 20 Feb 2008 23:43:13 +0000 (10:43 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 20 Feb 2008 23:43:13 +0000 (10:43 +1100)
Make the EJS provision and the selftest scripts both use the new
syntax for speicifying the ldap backend type.

Andrew Bartlett
(This used to be commit b1d2584277304be3f2a640465cbf6b2a3ec571cc)

source4/selftest/target/Samba4.pm
source4/setup/provision

index 563aca876e0fa5c75e87129850ebcda904cf9f2e..11d4c85aeede28a42e52556b93e6c526f7effc52 100644 (file)
@@ -729,9 +729,10 @@ nogroup:x:65534:nobody
 
                if ($self->{ldap} eq "openldap") {
                       ($ret->{SLAPD_CONF}, $ret->{OPENLDAP_PIDFILE}) = $self->mk_openldap($ldapdir, $configuration) or die("Unable to create openldap directories");
+                      push (@provision_options, "--ldap-backend-type=openldap");
                } elsif ($self->{ldap} eq "fedora-ds") {
                       ($ret->{FEDORA_DS_DIR}, $ret->{FEDORA_DS_PIDFILE}) = $self->mk_fedora_ds($ldapdir, $configuration) or die("Unable to create fedora ds directories");
-                      push (@provision_options, "--ldap-module=nsuniqueid");
+                      push (@provision_options, "--ldap-backend-type=fedora-ds");
                       push (@provision_options, "'--aci=aci:: KHRhcmdldGF0dHIgPSAiKiIpICh2ZXJzaW9uIDMuMDthY2wgImZ1bGwgYWNjZXNzIHRvIGFsbCBieSBhbGwiO2FsbG93IChhbGwpKHVzZXJkbiA9ICJsZGFwOi8vL2FueW9uZSIpOykK'");
                  }
 
index 9e135cddbb49207356041849b1fa89b681ae7009..328754fd9c8afd17e9dc7195c8978d9faf97551d 100755 (executable)
@@ -35,7 +35,7 @@ options = GetOptions(ARGV,
                'partitions-only',
                'ldap-base',
                'ldap-backend=s',
-                'ldap-module=s',
+                'ldap-backend-type=s',
                 'aci=s');
 
 if (options == undefined) {
@@ -88,7 +88,7 @@ provision [options]
  --partitions-only              Configure Samba's partitions, but do not modify them (ie, join a BDC)
  --ldap-base                   output only an LDIF file, suitable for creating an LDAP baseDN
  --ldap-backend LDAPSERVER      LDAP server to use for this provision
- --ldap-module  MODULE          LDB mapping module to use for the LDAP backend
+ --ldap-backend-type  TYPE      OpenLDAP or Fedora DS
  --aci          ACI             An arbitary LDIF fragment, particularly useful to loading a backend ACI value into a target LDAP server
 You must provide at least a realm and domain
 
@@ -124,7 +124,7 @@ for (r in options) {
 
 var blank = (options["blank"] != undefined);
 var ldapbackend = (options["ldap-backend"] != undefined);
-var ldapmodule = (options["ldap-module"] != undefined);
+var ldapbackendtype = options["ldap-backend-type"];
 var partitions_only = (options["partitions-only"] != undefined);
 var paths = provision_default_paths(subobj);
 if (options["aci"] != undefined) {
@@ -139,9 +139,13 @@ if (ldapbackend) {
        if (options["ldap-backend"] == "ldapi") {
                subobj.LDAPBACKEND = subobj.LDAPI_URI;
        }
-       if (!ldapmodule) {
+       if (ldapbackendtype == undefined) {
+              
+       } else if (ldapbackendtype == "openldap") {
                subobj.LDAPMODULE = "normalise,entryuuid";
                subobj.TDB_MODULES_LIST = "";
+       } else if (ldapbackendtype == "fedora-ds") {
+               subobj.LDAPMODULE = "nsuniqueid";
        }
        subobj.BACKEND_MOD = subobj.LDAPMODULE + ",paged_searches";
        subobj.DOMAINDN_LDB = subobj.LDAPBACKEND;
@@ -183,8 +187,8 @@ if (partitions_only) {
        if (ldapbackend) {
                message("--ldap-backend='%s' \\\n", subobj.LDAPBACKEND);
        }
-       if (ldapmodule) {
-               message("--ldap-module='%s' \\\n", + subobj.LDAPMODULE);
+       if (ldapbackendtype != undefined) {
+               message("--ldap-backend-type='%s' \\\n", + ldapbackendtype);
        }
        message("--aci='" + subobj.ACI + "' \\\n")
 }