mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-25 00:02:53 -05:00
Fix error messages
This commit is contained in:
parent
7710791382
commit
127c7a1381
1 changed files with 3 additions and 3 deletions
|
|
@ -356,7 +356,7 @@ $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $P1SLAVEPORT \
|
|||
RC=$?
|
||||
|
||||
if test $RC != 0 ; then
|
||||
echo "ldapsearch failed at R1 slave ($RC)!"
|
||||
echo "ldapsearch failed at P1 slave ($RC)!"
|
||||
kill -HUP $PID $R1SLAVEPID $R2SLAVEPID $P1SLAVEPID $P2SLAVEPID $P3SLAVEPID
|
||||
exit $RC
|
||||
fi
|
||||
|
|
@ -367,7 +367,7 @@ $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $P2SLAVEPORT \
|
|||
RC=$?
|
||||
|
||||
if test $RC != 0 ; then
|
||||
echo "ldapsearch failed at R2 slave ($RC)!"
|
||||
echo "ldapsearch failed at P2 slave ($RC)!"
|
||||
kill -HUP $PID $R1SLAVEPID $R2SLAVEPID $P1SLAVEPID $P2SLAVEPID $P3SLAVEPID
|
||||
exit $RC
|
||||
fi
|
||||
|
|
@ -378,7 +378,7 @@ $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $P3SLAVEPORT \
|
|||
RC=$?
|
||||
|
||||
if test $RC != 0 ; then
|
||||
echo "ldapsearch failed at R2 slave ($RC)!"
|
||||
echo "ldapsearch failed at P3 slave ($RC)!"
|
||||
kill -HUP $PID $R1SLAVEPID $R2SLAVEPID $P1SLAVEPID $P2SLAVEPID $P3SLAVEPID
|
||||
exit $RC
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue