From: Jong Hyuk Choi Date: Fri, 5 Sep 2003 18:11:39 +0000 (+0000) Subject: It's verified that back-hdb performs as a sync provider as well as a sync consumer. X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~746 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b3eff8fceb89a917cb6fa5a9dbb7d57ac245a18b;p=openldap It's verified that back-hdb performs as a sync provider as well as a sync consumer. --- diff --git a/tests/scripts/test017-syncreplication-refresh b/tests/scripts/test017-syncreplication-refresh index 3f1d42e27d..be59b12298 100755 --- a/tests/scripts/test017-syncreplication-refresh +++ b/tests/scripts/test017-syncreplication-refresh @@ -27,7 +27,9 @@ rm -rf $R1REPLDIR mkdir $R1REPLDIR SAVE=$BACKEND -BACKEND=bdb +if test $BACKEND = ldbm; then + BACKEND=bdb +fi echo "Starting master slapd on TCP/IP port $PORT..." . $CONFFILTER $BACKEND $MONITORDB < $SRMASTERCONF > $DBCONF $SLAPD -f $DBCONF -h $MASTERURI -d $LVL $TIMING > $MASTERLOG 2>&1 & diff --git a/tests/scripts/test018-syncreplication-persist b/tests/scripts/test018-syncreplication-persist index 3a71e5959c..66f5637673 100755 --- a/tests/scripts/test018-syncreplication-persist +++ b/tests/scripts/test018-syncreplication-persist @@ -27,7 +27,9 @@ rm -rf $P1REPLDIR mkdir $P1REPLDIR SAVE=$BACKEND -BACKEND=bdb +if test $BACKEND = ldbm; then + BACKEND=bdb +fi echo "Starting master slapd on TCP/IP port $PORT..." . $CONFFILTER $BACKEND $MONITORDB < $SRMASTERCONF > $DBCONF $SLAPD -f $DBCONF -h $MASTERURI -d $LVL $TIMING > $MASTERLOG 2>&1 & diff --git a/tests/scripts/test020-syncreplication-cascading b/tests/scripts/test020-syncreplication-cascading index 6ffb6852c6..7fff42ec59 100755 --- a/tests/scripts/test020-syncreplication-cascading +++ b/tests/scripts/test020-syncreplication-cascading @@ -39,7 +39,9 @@ rm -rf $P3REPLDIR mkdir $P3REPLDIR SAVE=$BACKEND -BACKEND=bdb +if test $BACKEND = ldbm; then + BACKEND=bdb +fi echo "Starting master slapd on TCP/IP port $PORT..." . $CONFFILTER $BACKEND $MONITORDB < $SRMASTERCONF > $DBCONF $SLAPD -f $DBCONF -h $MASTERURI -d $LVL $TIMING > $MASTERLOG 2>&1 &