#!/bin/sh case "$1" in install) . /etc/init.d/rc.functions if ! grep -q "skinenigmang" /etc/vdr/setup.conf 2>/dev/null; then cat >> /etc/vdr/setup.conf.add <<- EOF skinenigmang.ChannelLogoHeight = 164 skinenigmang.ChannelLogoWidth = 220 EOF fi ;; uninstall) ;; depend) echo skinenigmang ;; *) echo "Usage $0 {install | uninstall | depend}" >&2 exit 1 esac