mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-05-28 04:35:57 -04:00
ITS#5408: Support back-ldif
This commit is contained in:
parent
d756699af6
commit
fda00af4c1
2 changed files with 5 additions and 5 deletions
|
|
@ -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..."
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue