]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/hbugs/scripts/brokerctl.sh
This commit was manufactured by cvs2svn to create branch 'moogle'.
[helm.git] / helm / ocaml / hbugs / scripts / brokerctl.sh
diff --git a/helm/ocaml/hbugs/scripts/brokerctl.sh b/helm/ocaml/hbugs/scripts/brokerctl.sh
deleted file mode 100755 (executable)
index 3da998d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-daemon="broker"
-if [ "$1" = "--help" -o "$1" = "" ]; then
-   echo "ctl.sh { start | stop | --help }"
-   exit 0
-fi
-if [ "$1" = "start" ]; then
-   echo -n "Starting HBugs broker ... "
-   ./$daemon &> run/$daemon.log &
-   echo "done!"
-elif [ "$1" = "stop" ]; then
-   echo -n "Stopping HBugs broker ... "
-   killall -9 $daemon
-   echo "done!"
-fi