From 40cd3883c8439e3374d9b3b229a19517cbef4422 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Fri, 18 Apr 2014 09:25:37 +0000 Subject: [PATCH] check for running zebra before starting zebrasrv --- zebra/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/zebra/Makefile b/zebra/Makefile index 71c9b9a..35a4a25 100644 --- a/zebra/Makefile +++ b/zebra/Makefile @@ -53,7 +53,17 @@ dump: clean: rm -f terse.properties -start-zebra: +check-running-zebrasrv: + @if zoomsh -e "open localhost:8018" "quit" >/dev/null; then \ + echo ""; \ + echo "There is already a running zebrasrv on localhost:8018"; \ + echo "You may need to run: killall zebrasrv-2.0"; \ + false; \ + else \ + true; \ + fi + +start-zebra: check-running-zebrasrv zebrasrv-2.0 -f $$(pwd)/yazserver.xml > ${ZEBRA_LOGFILE} 2>&1 & stop-zebra: -- 1.7.10.4