openldap/tests/scripts/makeldbm.sh

16 lines
263 B
Bash
Raw Normal View History

1999-04-21 13:59:01 +08:00
#! /bin/sh
1998-08-09 08:43:13 +08:00
. scripts/defines.sh
echo "Cleaning up in $DBDIR..."
rm -f $DBDIR/[!C]*
1998-08-09 08:43:13 +08:00
echo "Running ldif2ldbm to build slapd database..."
$LDIF2LDBM -f $CONF -i $LDIF -e ../servers/slapd/tools
RC=$?
1999-04-21 13:59:01 +08:00
if test $RC != 0 ; then
1998-08-09 08:43:13 +08:00
echo "ldif2ldbm failed!"
exit $RC
fi