blob: c83851e6b1a85ac679a3ac368e555007cb79ed0f (
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
|
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/files/mythbackend.init,v 1.1 2012/06/22 03:30:50 cardoe Exp $
description="MythTV backend recording daemon"
extra_commands="resched upnprebuild"
description_resched="Forces the recording scheduler to update"
description_upnprebuild="Rebuilds the UPnP media cache"
depend() {
# mythbackend doesn't need to run on the same machine that
# mysql runs on. so its use for that reason
need net
use mysql LCDd
}
start() {
[ -z "${MYTHBACKEND_VERBOSE}" ] && \
MYTHBACKEND_VERBOSE="important,general"
#fixes for bug #101308
unset DISPLAY
unset SESSION_MANAGER
# Work around any strange permissions that may be on these files.
chown -R mythtv:video /var/log/mythtv/
chown -R mythtv:video /home/mythtv/
ebegin "Starting MythTV Backend"
start-stop-daemon --start --quiet -u mythtv:video \
--exec /usr/bin/mythbackend --
--daemon --pidfile /var/run/mythbackend.pid \
--verbose ${MYTHBACKEND_VERBOSE} \
--logfile /var/log/mythtv/mythbackend.log \
--user mythtv ${MYTHBACKEND_OPTS}
eend $?
}
stop() {
ebegin "Stopping MythTV Backend"
start-stop-daemon --stop --quiet --pidfile=/var/run/mythbackend.pid
eend $?
}
resched() {
ebegin "Updating the recording scheduler"
/usr/bin/mythbackend --resched
eend $?
}
upnprebuild() {
ebegin "Rebuilding UPnP media cache"
/usr/bin/mythbackend --upnprebuild
eend $?
}
|