check for wget

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@766 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
allo 19 years ago
parent 211a72ec6b
commit ba145efb46

@ -1,16 +1,21 @@
#!/bin/sh
cd `dirname $0`
## generating the proper classpath
#CLASSPATH=""
#for N in `ls -1 lib/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done
#for N in `ls -1 libx/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done
#java -classpath classes:htroot:$CLASSPATH yacy -shutdown
which wget >/dev/null
if [ 0 == $? ];
then
port=`cat DATA/SETTINGS/httpProxy.conf |grep "^port="|sed "s/.*=//"`
pw=`cat DATA/SETTINGS/httpProxy.conf |grep "^adminAccountBase64MD5="|sed "s/.*=//"`
wget -q --header "Authorization: realm=$pw" http://localhost:$port/Steering.html?shutdown=true -O /dev/null
else
# generating the proper classpath
CLASSPATH=""
for N in `ls -1 lib/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done
for N in `ls -1 libx/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done
java -classpath classes:htroot:$CLASSPATH yacy -shutdown
fi
echo "please wait until the YaCy daemon process terminates"
echo "you can monitor this with 'tail -f DATA/LOG/yacy00.log' and 'fuser log/yacy00.log'"

Loading…
Cancel
Save