-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbatadv-vis.init
59 lines (51 loc) · 1.23 KB
/
batadv-vis.init
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
#!/bin/sh
### BEGIN INIT INFO
# Provides: batadv-vis
# Required-Start: $remote_fs $network alfred
# Required-Stop: $remote_fs $network alfred
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: batadv-vis
### END INIT INFO
# Author: Nils Schneider <nils@nilsschneider.net>
PATH=/sbin:/bin
DESC="batadv-vis"
NAME=batadv-vis
DAEMON=/usr/sbin/$NAME
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
GROUP=alfred
OPTIONS="-s"
[ -x "$DAEMON" ] || exit 0
# Source defaults.
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
[ -n "$BATMANIF" ] && OPTIONS="$OPTIONS -i $BATMANIF"
. /lib/lsb/init-functions
case "$1" in
start)
log_daemon_msg "Starting $DESC" "$NAME"
start-stop-daemon --start --quiet --pidfile "$PIDFILE" \
--make-pidfile --group $GROUP --background \
--exec "$DAEMON" --oknodo -- $OPTIONS
log_end_msg $?
;;
stop)
log_daemon_msg "Stopping $DESC" "$NAME"
start-stop-daemon --stop --quiet --pidfile "$PIDFILE" \
--retry 1 --oknodo
log_end_msg $?
;;
restart|force-reload)
$0 stop
sleep 1
$0 start
;;
status)
status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2
exit 1
;;
esac
exit $?