commit: 0e7b6f68892e0f93721339c6697657be255b9fea
Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 13 20:25:55 2020 +0000
Commit: Jörg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
CommitDate: Thu Feb 13 20:35:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e7b6f68
media-plugins/vdr-live: rm obsolete files confd, rc-addon.sh
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Joerg Bornkessel <hd_brummy <AT> gentoo.org>
media-plugins/vdr-live/files/confd | 8 --------
media-plugins/vdr-live/files/rc-addon.sh | 11 -----------
2 files changed, 19 deletions(-)
diff --git a/media-plugins/vdr-live/files/confd
b/media-plugins/vdr-live/files/confd
deleted file mode 100644
index b96f0696c08..00000000000
--- a/media-plugins/vdr-live/files/confd
+++ /dev/null
@@ -1,8 +0,0 @@
-# configuration of vdr-live
-
-# use this portnumber
-LIVE_PORT="8008"
-
-# bind to these IP addresses
-LIVE_BIND_IPS="127.0.0.1"
-
diff --git a/media-plugins/vdr-live/files/rc-addon.sh
b/media-plugins/vdr-live/files/rc-addon.sh
deleted file mode 100644
index f637736d49b..00000000000
--- a/media-plugins/vdr-live/files/rc-addon.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-plugin_pre_vdr_start() {
- if [ -n "${LIVE_PORT}" ]; then
- add_plugin_param "-p ${LIVE_PORT}"
- fi
-
- local ip
- for ip in ${LIVE_BIND_IPS}; do
- add_plugin_param "-i ${ip}"
- done
-}
-