openldap/tests/scripts/makeldbm.sh

17 lines
244 B
Bash
Raw Normal View History

#! /bin/sh
# $OpenLDAP$
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 slapadd to build slapd database..."
$slapadd -f $CONF -l $LDIF
1998-08-09 08:43:13 +08:00
RC=$?
if test $RC != 0 ; then
echo "slapadd failed!"
1998-08-09 08:43:13 +08:00
exit $RC
fi