ITS#5408: Support back-ldif

This commit is contained in:
Hallvard Furuseth 2008-11-12 01:00:56 +00:00
parent d756699af6
commit fda00af4c1
2 changed files with 5 additions and 5 deletions

View file

@ -12,10 +12,10 @@
## top-level directory of the distribution or, alternatively, at
## <http://www.OpenLDAP.org/license.html>.
if test "$BACKEND" != "bdb" && test "$BACKEND" != "hdb" ; then
echo "Test does not support $BACKEND"
case $BACKEND in bdb | hdb | ldif) : ;; *)
echo "Test does not support $BACKEND backend, test skipped"
exit 0
fi
esac
echo "running defines.sh"
. $SRCDIR/scripts/defines.sh
@ -36,7 +36,7 @@ if test $RC != 0 ; then
exit $RC
fi
rm -f $DBDIR1A/* $DBDIR1B/*
rm -rf $DBDIR1A/* $DBDIR1B/*
cp -pr $DBDIR1C $DBDIR2C
echo "Starting slapd 1 on TCP/IP port $PORT1..."

View file

@ -17,7 +17,7 @@ echo "running defines.sh"
. $SRCDIR/scripts/defines.sh
case $BACKEND in
hdb)
hdb | ldif)
;;
*)
echo "subtree rename not supported by back-$BACKEND"