summaryrefslogtreecommitdiff
path: root/package/monit/files/monit.init
blob: fd552b95ea502e39108d77e8038981d33b0192a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#FWINIT 10

case $1 in
autostop) ;;
autostart|start)
	monit $monit_flags
	;;
stop)
	killall monit	
	;;
restart)
	sh $0 stop
	sh $0 start
	;;
*)
	echo "usage: $0 (start|stop|restart)"
	exit 1
esac
exit $?