-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.debian
executable file
·61 lines (51 loc) · 1.29 KB
/
init.debian
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh
### BEGIN INIT INFO
# Provides: waterwise
# Required-Start: $network $remote_fs $syslog $houseportal
# Required-Stop: $network $remote_fs $syslog $houseportal
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: the BeWaterWise watering index interface from MWDSC
### END INIT INFO
PATH=/sbin:/bin:/usr/sbin:/usr/bin
. /lib/lsb/init-functions
DAEMON=/usr/local/bin/waterwise
PIDFILE=/var/run/waterwise.pid
test -x $DAEMON || exit 0
OPTS=
if [ -r /etc/default/waterwise ]; then
. /etc/default/waterwise
fi
case $1 in
start)
log_daemon_msg "Starting the BeWaterWise interface" "waterwise"
start-stop-daemon --start --quiet --oknodo --background --pidfile $PIDFILE --make-pidfile --startas $DAEMON -- $OPTS
log_end_msg $?
;;
stop)
log_daemon_msg "Stopping the BeWaterWise interface" "waterwise"
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE --retry=TERM/30/KILL/5 --exec $DAEMON
log_end_msg $?
rm -f $PIDFILE
;;
restart|force-reload)
$0 stop && sleep 2 && $0 start
;;
try-restart)
if $0 status >/dev/null; then
$0 restart
else
exit 0
fi
;;
reload)
exit 3
;;
status)
status_of_proc $DAEMON "BeWaterWise interface"
;;
*)
echo "Usage: $0 {start|stop|restart|try-restart|force-reload|status}"
exit 2
;;
esac