aboutsummaryrefslogtreecommitdiff
path: root/multimedia/vdr/files/vdr.in
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/vdr/files/vdr.in')
-rw-r--r--multimedia/vdr/files/vdr.in44
1 files changed, 0 insertions, 44 deletions
diff --git a/multimedia/vdr/files/vdr.in b/multimedia/vdr/files/vdr.in
deleted file mode 100644
index 743325f9bd50..000000000000
--- a/multimedia/vdr/files/vdr.in
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-
-# PROVIDE: vdr
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-#
-# Add the following line to /etc/rc.conf[.local] to enable vdr:
-#
-# vdr_enable="YES"
-#
-# And if you are using vdr plugins etc. add those including any plugin
-# parameters to /etc/rc.conf[.local] similar to this:
-#
-# vdr_flags="'-Pxineliboutput --local=none --remote=127.1:37890' \
-# -Pfemon -Posdpip \
-# -Posdteletext --cache-system=packed --max-cache=128' \
-# -Pstreamdev-server '-Plive -i127.1' -Pepgsearch \
-# -Pinfosatepg"
-
-. /etc/rc.subr
-
-name=vdr
-rcvar=vdr_enable
-
-load_rc_config ${name}
-: ${vdr_enable="NO"}
-: ${vdr_chdir="%%VIDEODIR%%"}
-: ${vdr_waitdvb="YES"}
-
-command="%%PREFIX%%/bin/vdr"
-procname="$command"
-command_args="-d"
-
-start_precmd="${name}_prestart"
-
-vdr_prestart()
-{
- if checkyesno "${name}_waitdvb"; then
- command="/usr/sbin/daemon"
- rc_flags="-f %%PREFIX%%/bin/vdr-waitdvb $rc_flags"
- fi
-}
-
-run_rc_command "$1"