X-Git-Url: http://git.harvie.cz/?p=svn%2FPrometheus-QoS%2F.git;a=blobdiff_plain;f=etc%2Finit.d%2Fprometheus;fp=etc%2Finit.d%2Fprometheus;h=0000000000000000000000000000000000000000;hp=c0f8170deaf7d20e77443b26596c180dd7e46342;hb=5c7ce8ce582f05dad22cec8f41a80180f4c08e18;hpb=db3025bc20a1906bf8490a6f5848dea0ad926676 diff --git a/etc/init.d/prometheus b/etc/init.d/prometheus deleted file mode 100644 index c0f8170..0000000 --- a/etc/init.d/prometheus +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -EXEFILE=/usr/sbin/prometheus - -case "$1" in - start) - $EXEFILE -n - ;; - stop) - $EXEFILE -f - ;; - kill) - $EXEFILE -9 - ;; - restart|force-reload) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "Usage: $0 {start|stop|restart|force-reload|kill}" >&2 - exit 1 - ;; -esac