#!/bin/sh case "$1" in install) . /etc/init.d/rc.functions register_setting "NTP_CLIENT_SERVER" "de.pool.ntp.org" "name of the ntp server to use" ;; uninstall) ;; depend) echo "vdr" ;; *) echo "Usage $0 {install | uninstall | depend}" >&2 exit 1 esac