different algorithm to test checkalive as it depends less on the

existence of wget (or curl) on the OS.
This commit is contained in:
Michael Peter Christen 2014-04-06 01:20:03 +02:00
parent 6b0e62ec59
commit 68417a05c5

View File

@ -1,19 +1,15 @@
#!/bin/bash
cd "`dirname $0`"
# for a production environment with high-availability requirement,
# (and if you are using the debian version of yacy)
# add the following line in /etc/crontab
# 0 * * * * root cd /usr/share/yacy/bin && ./checkalive.sh
port=$(grep ^port= ../DATA/SETTINGS/yacy.conf |cut -d= -f2)
RESULT=`wget -t 1 --spider http://localhost:$port/Status.html 2>&1`
FLAG=0
for x in $RESULT; do
if [ "$x" = '200' ]; then
FLAG=1
fi
done
if [ `./apicall.sh /Status.html | grep "</html>"` ]; then
FLAG=1
fi
if [ $FLAG -eq '0' ]; then
cd ..
@ -22,5 +18,4 @@ if [ $FLAG -eq '0' ]; then
rm DATA/yacy.running
./startYACY.sh
fi
exit
exit