]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/hbugs/broker/hbugs_broker_ctl.sh
This commit was manufactured by cvs2svn to create branch
[helm.git] / helm / hbugs / broker / hbugs_broker_ctl.sh
diff --git a/helm/hbugs/broker/hbugs_broker_ctl.sh b/helm/hbugs/broker/hbugs_broker_ctl.sh
deleted file mode 100755 (executable)
index b06f844..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-daemon="hbugs_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 $daemon
-   echo "done!"
-fi