]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/initscripts/init.d/vdr
iptables: Replace state module by conntrack module.
[people/teissler/ipfire-2.x.git] / src / initscripts / init.d / vdr
1 #!/bin/sh
2 ########################################################################
3 # Begin $rc_base/init.d/vdr
4 #
5 # Description : This is a script that starts vdr as deamon
6 #
7 # Authors : Arne Fitzenreiter (arne@ipfire.org)
8 #
9 # Version : 01.00
10 #
11 # Notes :
12 #
13 ########################################################################
14
15 . /etc/sysconfig/rc
16 . ${rc_functions}
17
18 case "${1}" in
19 start)
20 boot_mesg "Starting Video Disk Recorder..."
21 /usr/sbin/runvdr >/dev/null 2>&1 &
22 evaluate_retval
23 ;;
24
25 stop)
26 boot_mesg "Stopping Video Disk Recorder..."
27 killproc /usr/sbin/vdr
28 ;;
29
30 restart)
31 ${0} stop
32 sleep 1
33 ${0} start
34 ;;
35
36 status)
37 statusproc /usr/sbin/runvdr
38 statusproc /usr/sbin/vdr
39 ;;
40
41 *)
42 echo "Usage: ${0} {start|stop|restart|status}"
43 exit 1
44 ;;
45 esac
46
47 # End $rc_base/init.d/vdr