]> git.pld-linux.org Git - packages/mythtv.git/blob - mythbackend.init
- formatting
[packages/mythtv.git] / mythbackend.init
1 #!/bin/sh
2 #
3 # mythbackend   Server component of MythTV
4 #
5 # chkconfig: 2345 86 14
6 # description: Starts the mythbackend process as a daemon after the XWindows \
7 #              system is started, in runlevel 5. This allows scheduled \
8 #              recordings to occur without manual intervention.
9 # processname: mythbackend
10 # pidfile: /var/run/mythtv/mythbackend.pid
11 # config: /etc/sysconfig/mythbackend
12
13 # Source function library.
14 . /etc/rc.d/init.d/functions
15
16 if [ -f /etc/sysconfig/mythbackend ]; then
17         . /etc/sysconfig/mythbackend
18 fi
19
20 pidfile=/var/run/mythtv/mythbackend.pid
21
22 start() {
23         # Start daemons.
24         if [ -f /var/lock/subsys/mythbackend ]; then
25                 msg_already_running "Mythbackend"
26                 return
27         fi
28
29         msg_starting "Mythbackend"
30         daemon /usr/sbin/mythbackend --daemon \
31                 --user mythtv \
32                 --logfile /var/log/mythtv/mythbackend.log \
33                 --pidfile $pidfile \
34                 $OPTIONS
35         RETVAL=$?
36         [ $RETVAL -eq 0 ] && touch /var/lock/subsys/mythbackend
37 }
38
39 stop() {
40         # Stop daemons.
41         if [ ! -f /var/lock/subsys/mythbackend ]; then
42                 msg_not_running "Mythbackend"
43                 return
44         fi
45
46         msg_stopping "Mythbackend"
47         killproc --pidfile mythtv/mythbackend.pid mythbackend
48         rm -f /var/lock/subsys/mythbackend $pidfile >/dev/null 2>&1
49 }
50
51 flush-logs() {
52         if [ ! -f /var/lock/subsys/mythbackend ]; then
53                 return
54         fi
55
56         show "Rotating %s logs" "Mythbackend"
57         killproc --pidfile $pidfile mythbackend -HUP
58 }
59
60 RETVAL=0
61 # See how we were called.
62 case "$1" in
63   start)
64         start
65         ;;
66   stop)
67         stop
68         ;;
69   restart)
70         stop
71         start
72         ;;
73   flush-logs)
74         flush-logs
75         ;;
76   status)
77         status --pidfile $pidfile mythbackend
78         ;;
79   *)
80         msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
81         exit 3
82 esac
83
84 exit $RETVAL
This page took 0.079819 seconds and 3 git commands to generate.