blob: 5744e416434b4a18eaa39ad633d8392446899bcf (
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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#! /bin/sh
#
# runvdr init.d script for Debian and compatible distributions
#
# by Udo Richter <udo_richter(a)gmx.de>
# http://www.richter-udo.de/vdr/scripts.html#runvdr
#
### BEGIN INIT INFO
# Provides: runvdr
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: runvdr service
# Description: Start the runvdr script that launches VDR
### END INIT INFO
set -e
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="Runvdr Extreme"
NAME=runvdr
DAEMON=/usr/local/bin/runvdr
PIDFILE=/var/run/runvdr.pid
SCRIPTNAME=/etc/init.d/runvdr
# Gracefully exit if the package has been removed.
test -x $DAEMON || exit 0
#
# Function that starts runvdr.
#
d_start() {
start-stop-daemon --start --background --quiet --pidfile $PIDFILE \
--exec $DAEMON --
}
#
# Function that stops runvdr.
#
d_stop() {
$DAEMON --terminate --wait=30
}
#
# Function that sends a restart to runvdr.
#
d_reload() {
$DAEMON --restart
}
#
# Function that sends a dvb-reload to runvdr.
#
d_dvb_reload() {
$DAEMON --dvb-restart
}
case "$1" in
start)
echo -n "Starting $DESC: $NAME"
d_start
echo "."
;;
stop)
echo "Stopping $DESC: $NAME".
d_stop
;;
reload)
echo -n "Reloading $DESC configuration"
d_reload
echo "."
;;
dvb-reload|dvb-restart)
echo -n "Reloading $DESC configuration"
d_dvb_reload
echo "."
;;
restart|force-reload)
echo -n "Restarting $DESC: $NAME"
d_stop
sleep 1
d_start
echo "."
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|restart|dvb-restart|reload|force-reload}" >&2
exit 1
;;
esac
exit 0
|