directory 'conf' created and moved any config files from 'etc'
[svn/Prometheus-QoS/.git] / etc / init.d / prometheus
diff --git a/etc/init.d/prometheus b/etc/init.d/prometheus
deleted file mode 100644 (file)
index c0f8170..0000000
+++ /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
This page took 0.113046 seconds and 4 git commands to generate.