hd_brummy 15/01/28 14:56:35 Added: rc-addon-0.3.sh confd-0.3 Log: parameter --epgimages available in rc-script (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 34C2808A)
Revision Changes Path 1.1 media-plugins/vdr-live/files/rc-addon-0.3.sh file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-live/files/rc-addon-0.3.sh?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-live/files/rc-addon-0.3.sh?rev=1.1&content-type=text/plain Index: rc-addon-0.3.sh =================================================================== # $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-live/files/rc-addon-0.3.sh,v 1.1 2015/01/28 14:56:35 hd_brummy Exp $ # # [email protected] # [email protected] EPGIMAGES_DIR="/var/cache/vdr/epgimages" plugin_pre_vdr_start() { if [ "${LIVE_USE_SSL:=no}" = "yes" ]; then if [ -n "${LIVE_SSL_PORT}" ]; then add_plugin_param "-s ${LIVE_SSL_PORT}" fi add_plugin_param "--cert=/etc/vdr/plugins/live/live.pem" add_plugin_param "--key=/etc/vdr/plugins/live/live-key.pem" else if [ -n "${LIVE_PORT}" ]; then add_plugin_param "-p ${LIVE_PORT}" fi fi if [ -d ${EPGIMAGES_DIR} ]; then add_plugin_param "--epgimages=${EPGIMAGES_DIR}" fi local ip for ip in ${LIVE_BIND_IPS:=`hostname -i`}; do add_plugin_param "-i ${ip}" done } 1.1 media-plugins/vdr-live/files/confd-0.3 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-live/files/confd-0.3?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-live/files/confd-0.3?rev=1.1&content-type=text/plain Index: confd-0.3 =================================================================== # configuration of media-plugins/vdr-live # for people who want more secure # with ssl access. # on usage, you have to install vdr-live # with USE="ssl" # # SSL ADDRESS --> https://<your-ip>:8443/ # # allowed values: yes no # default: no #LIVE_USE_SSL="yes" # default given portnumber # only changes needed on problems # #LIVE_PORT="8008" #LIVE_SSL_PORT="8443" # bind to these IP addresses # default, your IP will automaticly detected # LIVE_BIND_IPS="127.0.0.1" # for people who have epgimges # default: /var/cache/vdr/epgimges # # set this to your own path, if needed #EPGIMAGES_DIR=" "
