summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2004-09-11 12:06:33 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2004-09-11 12:06:33 +0000
commit9214d233858a9bf261dc4a17df6648b4a59f5913 (patch)
tree058c8da9ac70bcefcac86e90a43bed70d9de5d99 /media-tv
parentMarked ~amd64. (Manifest recommit) (diff)
downloadgentoo-2-9214d233858a9bf261dc4a17df6648b4a59f5913.tar.gz
gentoo-2-9214d233858a9bf261dc4a17df6648b4a59f5913.tar.bz2
gentoo-2-9214d233858a9bf261dc4a17df6648b4a59f5913.zip
Closing #56114
Diffstat (limited to 'media-tv')
-rw-r--r--media-tv/mythtv/ChangeLog6
-rw-r--r--media-tv/mythtv/files/mythbackend.conf5
-rw-r--r--media-tv/mythtv/files/mythbackend.rc65
3 files changed, 12 insertions, 4 deletions
diff --git a/media-tv/mythtv/ChangeLog b/media-tv/mythtv/ChangeLog
index 44db0cec89e0..5b060f3089aa 100644
--- a/media-tv/mythtv/ChangeLog
+++ b/media-tv/mythtv/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-tv/mythtv
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.33 2004/09/10 16:54:12 aliz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.34 2004/09/11 12:06:33 aliz Exp $
+
+ 10 Sep 2004; Daniel Ahlberg <aliz@gentoo.org> files/mythbackend.conf,
+ files/mythbackend.rc6:
+ Added option to specify verbose level for mythbackend. Closing #56114.
*mythtv-0.16 (10 Sep 2004)
diff --git a/media-tv/mythtv/files/mythbackend.conf b/media-tv/mythtv/files/mythbackend.conf
index 6c92a4f6b0b5..359d38ddfbfb 100644
--- a/media-tv/mythtv/files/mythbackend.conf
+++ b/media-tv/mythtv/files/mythbackend.conf
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/files/mythbackend.conf,v 1.3 2004/07/14 22:53:37 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/files/mythbackend.conf,v 1.4 2004/09/11 12:06:33 aliz Exp $
# Uncomment this to disable the permission warnings.
MYTH_WARN=yes
@@ -21,3 +21,6 @@ MYTH_LOG=/var/log/mythtv/mythbackend.log
# Specify in which file to store the backend process id.
MYTH_PID=/var/run/mythtv/mythbackend.pid
+
+# Specify debug-level in log
+MYTH_VERBOSE="none"
diff --git a/media-tv/mythtv/files/mythbackend.rc6 b/media-tv/mythtv/files/mythbackend.rc6
index 47bd2b898f74..f49411fb9daf 100644
--- a/media-tv/mythtv/files/mythbackend.rc6
+++ b/media-tv/mythtv/files/mythbackend.rc6
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/files/mythbackend.rc6,v 1.3 2004/07/14 22:53:37 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/files/mythbackend.rc6,v 1.4 2004/09/11 12:06:33 aliz Exp $
depend() {
need net
@@ -43,7 +43,8 @@ start() {
ebegin "Starting myth backend"
start-stop-daemon --start --quiet --chuid "${MYTH_USER}" \
--exec /usr/bin/mythbackend -- \
- --daemon --pidfile "${MYTH_PID}" --logfile "${MYTH_LOG}"
+ --daemon --pidfile "${MYTH_PID}" --logfile "${MYTH_LOG}" \
+ --verbose ${MYTH_VERBOSE}
eend $?
}