From 3e5ac15c710d8e6f5188cf000c5dad5c0c62fd75 Mon Sep 17 00:00:00 2001 From: Michael Christen Date: Wed, 28 Dec 2011 02:46:29 +0100 Subject: [PATCH] add a check script that waits for stopYACY.sh to terminate. That makes it easier to write control scripts around it. If you want that the script terminates directly as before, call it concurrently or wrap it with 'timeout' like: timeout 10s ./stopYACY.sh to stop after 10 seconds --- stopYACY.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/stopYACY.sh b/stopYACY.sh index 3b45c134a..2385ad0d0 100755 --- a/stopYACY.sh +++ b/stopYACY.sh @@ -32,3 +32,10 @@ else echo "Neither wget nor java could be found or are not executable." echo "Visit http://localhost:$port/Steering.html?shutdown=true to stop YaCy or (in emergency case) use ./killYACY.sh" fi + +# wait until the yacy.running file disappears which means that YaCy has terminated +# If you don't want to wait, just run this concurrently +while [ -f "DATA/yacy.running" ] +do +sleep 1 +done