summaryrefslogtreecommitdiffstats
path: root/openwrt/package/monit/files/monit.init
blob: 50b18de149597aa65ca97ad6e74113c05fa9e995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

BIN=monit
DEFAULT=/etc/default/$BIN
RUN_D=/var/run
PID_F=$RUN_D/$BIN.pid
[ -f $DEFAULT ] && . $DEFAULT

case $1 in
 start)
  mkdir -p $RUN_D
  $BIN $OPTIONS
  ;;
 stop)
  [ -f $PID_F ] && kill $(cat $PID_F)
  ;;
 restart)
  $0 stop
  $0 start
  ;;
 *)
  echo "usage: $0 (start|stop|restart)"
  exit 1
esac
exit $?