#!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/net-misc/ntp/files/ntp.rc,v 1.12 2003/02/14 23:06:19 luke-jr Exp $ depend() { need net use dns logger } start() { if [ -n "${NTPDATE_CMD}" ] ; then ebegin "Initializing clock via ${NTPDATE_CMD}" ${NTPDATE_CMD} ${NTPDATE_OPTS} > /dev/null eend $? "Failed to run ${NTPDATE_CMD}" else eend 1 "Please setup ntp via /etc/conf.d/ntp" fi svc_stop & }