#!/bin/sh case "$1" in install) . /etc/init.d/rc.functions register_setting "STREAMDEV_CLIENT_SEARCH_SERVER" "1" "Search the streamdev server" register_setting "STREAMDEV_CLIENT_WAIT_FOR_SERVER" "0" "Search the streamdev server" ;; uninstall) ;; depend) echo "vdr" echo "network" ;; *) echo "Usage $0 {install | uninstall | depend}" exit 1 esac