mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 07:39:35 -05:00
15 lines
260 B
Bash
Executable file
15 lines
260 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. scripts/defines.sh
|
|
|
|
echo "Cleaning up in $DBDIR..."
|
|
|
|
rm -f $DBDIR/[!C]*
|
|
|
|
echo "Running ldif2ldbm to build slapd database..."
|
|
$LDIF2LDBM -f $CONF -i $LDIF -e ../servers/slapd/tools
|
|
RC=$?
|
|
if [ $RC != 0 ]; then
|
|
echo "ldif2ldbm failed!"
|
|
exit $RC
|
|
fi
|