summaryrefslogtreecommitdiff
path: root/killYACY.sh
diff options
context:
space:
mode:
authororbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2008-05-14 20:30:44 +0000
committerorbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2008-05-14 20:30:44 +0000
commit78087da2878b718ca9fe784bd690a166a2838a5a (patch)
tree42d200a4938ecf79c70ac278fe933452ea19d5c3 /killYACY.sh
parent5fde679acbf547b428192ae561cadb3e5665a605 (diff)
- changed seed file storage to clear text
- fixed kill script - fixed saving of seed file (had been corrupted by latest changes) - some refactoring git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4799 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'killYACY.sh')
-rwxr-xr-xkillYACY.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/killYACY.sh b/killYACY.sh
index 6c44e28f0..9790166f2 100755
--- a/killYACY.sh
+++ b/killYACY.sh
@@ -4,7 +4,7 @@
# To stop YaCy, use stopYACY.sh
cd `dirname $0`
-PID=`fuser DATA/LOG/yacy00.log | awk '{print $2}'`
+PID=`fuser DATA/LOG/yacy00.log | awk '{print $1}'`
echo "process-id is " $PID
kill -3 $PID
sleep 1