Fixed warning at tentacle_serverd script
This commit is contained in:
parent
902329e785
commit
fc72052b86
|
@ -133,10 +133,12 @@ case "$1" in
|
|||
else
|
||||
kill $TENTACLE_PID
|
||||
|
||||
COUNTER=0
|
||||
while [ $COUNTER -lt $MAXWAIT ]
|
||||
do
|
||||
_PID=`get_all_pid`
|
||||
if [ "$_PID" != "$SATELLITE_PID" ]
|
||||
if [ "$_PID" != "$SATELLITE_PID" ] || ([ "$_PID" == "" ] && [ "$SATELLITE_PID" == "" ])
|
||||
# tentacle already stopped
|
||||
then
|
||||
COUNTER=$MAXWAIT
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue