It's verified that back-hdb performs as a sync provider as well as a sync consumer.

This commit is contained in:
Jong Hyuk Choi 2003-09-05 18:11:39 +00:00
parent c25a892e62
commit b3eff8fceb
3 changed files with 9 additions and 3 deletions

View File

@ -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 &

View File

@ -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 &

View File

@ -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 &