X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fhbugs%2Fbroker%2Fhbugs_broker_ctl.sh;fp=helm%2Fhbugs%2Fbroker%2Fhbugs_broker_ctl.sh;h=0000000000000000000000000000000000000000;hb=c7514aaa249a96c5fdd39b1123fbdb38d92f20b6;hp=b06f844f177d26b85d7aa14121938c9eb8647723;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff;p=helm.git diff --git a/helm/hbugs/broker/hbugs_broker_ctl.sh b/helm/hbugs/broker/hbugs_broker_ctl.sh deleted file mode 100755 index b06f844f1..000000000 --- a/helm/hbugs/broker/hbugs_broker_ctl.sh +++ /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