# System configuration for VDR                                       -*- sh -*-

# The "master" options.  See the vdr(1) man page for the available ones.
#
# The default shutdown script (/usr/lib*/vdr/bin/vdr-shutdown.sh) powers
# off through sudo; the rules it needs are packaged in /etc/sudoers.d/vdr.
#
VDR_OPTIONS=(--lirc --vfat --shutdown=vdr-shutdown.sh)

# VDR_PLUGIN_ORDER is a space separated list of plugins that should be
# loaded in a specific order.  The plugins in this list don't need to be
# installed, but if they are, they will be loaded before other installed
# plugins.  Output device plugins should be loaded first so that all
# their features are available to other plugins at startup/shutdown.
#
VDR_PLUGIN_ORDER="
vaapivideo
softhdcuvid
softhddevice
xineliboutput
streamdev-client
"

# I18N settings.
#
. /etc/locale.conf 2>/dev/null || :
# LC_TIME affects how dates and times are displayed.
#export LC_TIME=fi_FI.UTF-8

# PATH where to find the internally used executables.
#
PATH="/usr/lib64/vdr/bin:$PATH"

# How many minutes before a recording should the VDR box wake up?
# Some CI/CAM combinations can take quite a long time to initialize, so
# we default to a pretty generous value here.
#
WAKEUP_BEFORE_RECORDING=10

# For debugging: allow vdr to dump core.  Note that depending on the operating
# environment, core dumps from setuid processes may be a security issue.
#
#DAEMON_COREFILE_LIMIT="unlimited"
