bump waldux kernel version
[openadk.git] / package / monit / files / monit.init
blob1136daf9ed8a990f0706c8470b6b9e3d492f5df0
1 #!/bin/sh
2 #PKG monit
3 #INIT 10
5 . /etc/rc.conf
7 case $1 in
8 autostop) ;;
9 autostart)
10 test x"${monit:-NO}" = x"NO" && exit 0
11 test x"$monit" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
12 exec sh $0 start
14 start)
15 /usr/sbin/monit $monit_flags
17 stop)
18 kill $(pgrep -f /usr/sbin/monit )
20 restart)
21 sh $0 stop
22 sh $0 start
25 echo "usage: $0 (start|stop|restart)"
26 exit 1
27 esac
28 exit $?