#!/bin/sh case "$1" in install) . /etc/init.d/rc.functions register_setting "VDR_PLUGIN_ARGS_systeminfo" "-s /usr/bin/systeminfo.sh" "systeminfo settings" ;; uninstall) ;; depend) echo "sensors" ;; *) echo "Usage $0 {install | uninstall | depend}" >&2 exit 1 esac