-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.debian
executable file
·68 lines (58 loc) · 1.49 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
61
62
63
64
65
66
67
#!/bin/sh
### BEGIN INIT INFO
# Provides: houserelay
# Required-Start: $network $remote_fs $syslog $houseportal
# Required-Stop: $network $remote_fs $syslog $houseportal
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: Relays control
# Description: A web service that provides a web API to control relays attached to GPIO pins
### END INIT INFO
PATH=/sbin:/bin:/usr/sbin:/usr/bin
. /lib/lsb/init-functions
DAEMON=/usr/local/bin/houserelays
PIDFILE=/var/run/houserelays.pid
test -x $DAEMON || exit 0
OPTS=
HTTPOPTS=
OTHEROPTS=
HOUSEOPTS=
if [ -r /etc/default/housegeneric ]; then
. /etc/default/housegeneric
fi
if [ -r /etc/default/houserelays ]; then
. /etc/default/houserelays
fi
case $1 in
start)
log_daemon_msg "Starting the relays web server" "houserelays"
start-stop-daemon --start --quiet --oknodo --background --pidfile $PIDFILE --make-pidfile --startas $DAEMON -- $HTTPOPTS $HOUSEOPTS $OTHEROPTS $OPTS
log_end_msg $?
;;
stop)
log_daemon_msg "Stopping the relays web server" "houserelays"
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 "Relay web server"
;;
*)
echo "Usage: $0 {start|stop|restart|try-restart|force-reload|status}"
exit 2
;;
esac