mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
17 lines
244 B
Bash
Executable File
17 lines
244 B
Bash
Executable File
#! /bin/sh
|
|
# $OpenLDAP$
|
|
|
|
. scripts/defines.sh
|
|
|
|
echo "Cleaning up in $DBDIR..."
|
|
|
|
rm -f $DBDIR/[!C]*
|
|
|
|
echo "Running slapadd to build slapd database..."
|
|
$slapadd -f $CONF -l $LDIF
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "slapadd failed!"
|
|
exit $RC
|
|
fi
|