From: Wolfram Schneider Date: Fri, 18 Apr 2014 09:25:37 +0000 (+0000) Subject: check for running zebra before starting zebrasrv X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=40cd3883c8439e3374d9b3b229a19517cbef4422 check for running zebra before starting zebrasrv --- 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: