#!/bin/sh case "$1" in install) . /etc/init.d/rc.functions register_setting "VDR_PLUGIN_ARGS_ffnetdev" "-e" "ffnetdev settings" test -z "$XORG_AUTOSTART" && update_setting "XORG_AUTOSTART" "VDR-VLC" register_application "VDR-VLC" "vdr-ffnetdev -f" "xorg" ;; uninstall) ;; depend) echo "vdr" ;; *) echo "Usage $0 {install | uninstall | delend}" >&2 exit 1 esac