mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
6020fe58e8
Slurpd incorrectly sends a separate attribute for each value of an attribute which caused slapd to complain. Hacked slapd/add.c to merge values. Slurpd uses version 2 and hence cannot set ManageDSAit. Hack slapd/back-ldbm/referral.c such that if update_ndn matches o_ndn, no referrals are returned. Fix replication tests ldapmodify must be made against master as no rebind proc exists final ldapsearch should not chase Fix referral tests Use -C option as needed
31 lines
842 B
Plaintext
31 lines
842 B
Plaintext
# $OpenLDAP$
|
|
#
|
|
# master slapd config -- for testing of replication
|
|
#
|
|
#include ./data/slapd.at.conf
|
|
#include ./data/slapd.oc.conf
|
|
include ./schema/core.schema
|
|
include ./schema/cosine.schema
|
|
include ./schema/inetorgperson.schema
|
|
#
|
|
schemacheck off
|
|
pidfile ./test-repl/slapd.pid
|
|
argsfile ./test-repl/slapd.args
|
|
|
|
#referral "ldap://localhost:9009/"
|
|
|
|
#######################################################################
|
|
# ldbm database definitions
|
|
#######################################################################
|
|
|
|
database ldbm
|
|
cachesize 0
|
|
suffix "o=University of Michigan, c=US"
|
|
directory ./test-repl
|
|
rootdn "cn=Replica, o=University of Michigan, c=US"
|
|
rootpw secret
|
|
updatedn "cn=Replica, o=University of Michigan, c=US"
|
|
updateref "ldap://localhost:9009/o=University%20of%20Michigan,c=US"
|
|
index cn,sn,uid pres,eq
|
|
lastmod on
|