mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 23:29:34 -05:00
There is no SLURPPID to kill
Test is also valid for back-hdb
This commit is contained in:
parent
73f2048456
commit
d8476d75c9
2 changed files with 2 additions and 8 deletions
|
|
@ -8,7 +8,7 @@ fi
|
|||
|
||||
. $SRCDIR/scripts/args.sh
|
||||
|
||||
if test "$BACKEND" != "bdb"; then
|
||||
if test "$BACKEND" != "bdb" -a "$BACKEND" != "hdb"; then
|
||||
echo "Test only valid for back-bdb"
|
||||
exit 0
|
||||
fi
|
||||
|
|
@ -82,7 +82,6 @@ RC=$?
|
|||
if test $RC != 0 ; then
|
||||
echo "ldapadd failed ($RC)!"
|
||||
kill -HUP $PID $SLAVEPID
|
||||
kill -HUP $SLURPPID
|
||||
exit $RC
|
||||
fi
|
||||
|
||||
|
|
@ -179,7 +178,6 @@ RC=$?
|
|||
if test $RC != 0 ; then
|
||||
echo "ldapsearch failed at master ($RC)!"
|
||||
kill -HUP $PID $SLAVEPID
|
||||
kill -HUP $SLURPPID
|
||||
exit $RC
|
||||
fi
|
||||
|
||||
|
|
@ -191,7 +189,6 @@ RC=$?
|
|||
if test $RC != 0 ; then
|
||||
echo "ldapsearch failed at slave ($RC)!"
|
||||
kill -HUP $PID $SLAVEPID
|
||||
kill -HUP $SLURPPID
|
||||
exit $RC
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ fi
|
|||
|
||||
. $SRCDIR/scripts/args.sh
|
||||
|
||||
if test "$BACKEND" != "bdb"; then
|
||||
if test "$BACKEND" != "bdb" -a "$BACKEND" != "hdb"; then
|
||||
echo "Test only valid for back-bdb"
|
||||
exit 0
|
||||
fi
|
||||
|
|
@ -82,7 +82,6 @@ RC=$?
|
|||
if test $RC != 0 ; then
|
||||
echo "ldapadd failed ($RC)!"
|
||||
kill -HUP $PID $SLAVEPID
|
||||
kill -HUP $SLURPPID
|
||||
exit $RC
|
||||
fi
|
||||
|
||||
|
|
@ -179,7 +178,6 @@ RC=$?
|
|||
if test $RC != 0 ; then
|
||||
echo "ldapsearch failed at master ($RC)!"
|
||||
kill -HUP $PID $SLAVEPID
|
||||
kill -HUP $SLURPPID
|
||||
exit $RC
|
||||
fi
|
||||
|
||||
|
|
@ -191,7 +189,6 @@ RC=$?
|
|||
if test $RC != 0 ; then
|
||||
echo "ldapsearch failed at slave ($RC)!"
|
||||
kill -HUP $PID $SLAVEPID
|
||||
kill -HUP $SLURPPID
|
||||
exit $RC
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue