- refactoring of stopYACY.sh by introduction of /bin/apicall which is able to call any api file with attached authorization git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6691 6c8d7289-2bf4-0310-a012-ef5d649a1542pull/1/head
parent
cd7f0bf75f
commit
b68deb407a
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
cd "`dirname $0`"
|
||||
port=$(grep ^port= ../DATA/SETTINGS/yacy.conf |cut -d= -f2)
|
||||
pw=$(grep ^adminAccountBase64MD5= ../DATA/SETTINGS/yacy.conf |cut -d= -f2)
|
||||
|
||||
if which curl &>/dev/null; then
|
||||
curl -s --header "Authorization: realm=$pw" "http://localhost:$port/$1" > /dev/null
|
||||
elif which wget &>/dev/null; then
|
||||
wget -q -t 1 --timeout=5 --header "Authorization: realm=$pw" "http://localhost:$port/$1" -O /dev/null
|
||||
else
|
||||
exit 1
|
||||
fi
|
@ -1,22 +1,22 @@
|
||||
#!/bin/sh
|
||||
cd "`dirname $0`"
|
||||
./searchtest.sh searchtest.words.aa &
|
||||
./searchtest.sh ../test/words/searchtest.words.aa &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.ab &
|
||||
./searchtest.sh ../test/words/searchtest.words.ab &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.ac &
|
||||
./searchtest.sh ../test/words/searchtest.words.ac &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.ad &
|
||||
./searchtest.sh ../test/words/searchtest.words.ad &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.ae &
|
||||
./searchtest.sh ../test/words/searchtest.words.ae &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.af &
|
||||
./searchtest.sh ../test/words/searchtest.words.af &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.ag &
|
||||
./searchtest.sh ../test/words/searchtest.words.ag &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.ah &
|
||||
./searchtest.sh ../test/words/searchtest.words.ah &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.ai &
|
||||
./searchtest.sh ../test/words/searchtest.words.ai &
|
||||
sleep 1
|
||||
./searchtest.sh searchtest.words.aj &
|
||||
./searchtest.sh ../test/words/searchtest.words.aj &
|
||||
|
||||
|
Loading…
Reference in new issue