summaryrefslogtreecommitdiffstats
path: root/meta-moblin/packages/monit/monit-4.10.1/init
diff options
context:
space:
mode:
Diffstat (limited to 'meta-moblin/packages/monit/monit-4.10.1/init')
-rw-r--r--meta-moblin/packages/monit/monit-4.10.1/init42
1 files changed, 0 insertions, 42 deletions
diff --git a/meta-moblin/packages/monit/monit-4.10.1/init b/meta-moblin/packages/monit/monit-4.10.1/init
deleted file mode 100644
index 325a552b28..0000000000
--- a/meta-moblin/packages/monit/monit-4.10.1/init
+++ /dev/null
@@ -1,42 +0,0 @@
1#! /bin/sh
2#
3# This is an init script for openembedded
4# Copy it to /etc/init.d/monit and type
5# > update-rc.d monit defaults 99
6#
7monit=/usr/bin/monit
8pidfile=/var/run/monit.pid
9monit_args="-c /etc/monitrc"
10
11test -x "$monit" || exit 0
12
13case "$1" in
14 start)
15 echo -n "Starting Monit"
16 start-stop-daemon --start --quiet --exec $monit -- $monit_args
17 RETVAL=$?
18 echo "."
19 ;;
20 stop)
21 echo -n "Stopping Monit"
22 start-stop-daemon --stop --quiet --pidfile $pidfile
23 RETVAL=$?
24 echo "."
25 ;;
26 restart)
27 $0 stop
28 $0 start
29 RETVAL=$?
30 ;;
31 status)
32 $monit $monit_args status
33 RETVAL=$?
34 echo "."
35 ;;
36 *)
37 echo "Usage: $0 {start|stop|restart|status}"
38 exit 1
39esac
40
41exit $RETVAL
42