diff options
author | Udo Richter <udo_richter@gmx.de> | 2008-03-02 00:00:00 +0100 |
---|---|---|
committer | Manuel Reimer <manuel.reimer@gmx.de> | 2013-10-01 17:18:45 +0200 |
commit | 207697bc97e1ac8905c14baac311769e02834330 (patch) | |
tree | 458ffeb0ecb1da1ff2a9afd446ca200449498453 /runvdr.conf.example | |
parent | 6d08550184e9d6d801d67882a827da46fadcdb66 (diff) | |
download | runvdr-extreme-207697bc97e1ac8905c14baac311769e02834330.tar.gz runvdr-extreme-207697bc97e1ac8905c14baac311769e02834330.tar.bz2 |
Version 0.3.0v0.3.0
* New: Support for the new VDR parameters --localedir and --userdump (LOCALEDIR="..." and USERDUMP="1")
* New: Wildcard loading with INCLUDE, allows for example to INCLUDE /etc/runvdr/conf.d/* to load several one-file-per-plugin config files.
* New: runvdr-conf.d, a plugin enable/disable service
* New: osdserver frontend for runvdr-conf.d
* New: Sample init.d script, Debian style
* Fix: Clean up mess with USER= and VDRUSER=. VDRUSER still works, but is deprecated.
Diffstat (limited to 'runvdr.conf.example')
-rw-r--r-- | runvdr.conf.example | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/runvdr.conf.example b/runvdr.conf.example index 85dc41b..8e31eaf 100644 --- a/runvdr.conf.example +++ b/runvdr.conf.example @@ -9,11 +9,17 @@ # Include other configuration file for defaults -# Must be first, or will override all previous settings +# Must be first, or will override all previous settings. +# You can also use wildcards to load several files in lexicographic order: +# INCLUDE /etc/runvdr/plugins.d/* # You may want to use this in ~/.runvdr.conf if you also want to load # /etc/runvdr.conf. DO NOT create infinite loops with this! # # INCLUDE /etc/runvdr.conf +# +# For use with runvdr-conf.d, un-comment this line: +# INCLUDE /etc/runvdr/conf.d/* + ##### ------------------------- @@ -39,6 +45,10 @@ VIDEODIR="/video" # from the video directory). CONFIGDIR="/video" +# Location of locale files for VDR 1.5.14 and newer. Default is to use +# the builtin "./locale" or whatever was compiled as LOCDIR into VDR. +# +# LOCALEDIR="/usr/src/vdr/locale" ##### ----------- ##### Plugins @@ -81,7 +91,7 @@ LIBDIR= # 'root' is necessary if the system time shall be set from the transponder # data, but for security reasons vdr can switch to a lesser privileged user # id during normal operation. -VDRUSER="" +USER="" # Write the EPG data into EPGFILE. Default is /video/epg.data. # Use EPGFILE=- to disable this. If EPGFILE is a directory, the file @@ -145,6 +155,9 @@ RCU= # with VFAT file systems VFAT= +# Allow coredumps if USER= is given (debugging) +# USERDUMP="1" + # Store PID of runvdr into a file? # RUNVDRPID=~/.runvdr.pid RUNVDRPID=/var/run/runvdr.pid |