diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-02-21 10:43:13 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-02-21 10:43:13 +1100 |
commit | b1d2584277304be3f2a640465cbf6b2a3ec571cc (patch) | |
tree | 8f04daa08c52c0a23f6afaaa98d32ab56524ee56 /source/selftest/target | |
parent | 5cd3310b78a85243eb436d05db3228c3495f9162 (diff) | |
download | samba-b1d2584277304be3f2a640465cbf6b2a3ec571cc.tar.gz |
Be consistant about --ldap-backend-type
Make the EJS provision and the selftest scripts both use the new
syntax for speicifying the ldap backend type.
Andrew Bartlett
Diffstat (limited to 'source/selftest/target')
-rw-r--r-- | source/selftest/target/Samba4.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/selftest/target/Samba4.pm b/source/selftest/target/Samba4.pm index 563aca876e0..11d4c85aeed 100644 --- a/source/selftest/target/Samba4.pm +++ b/source/selftest/target/Samba4.pm @@ -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'"); } |