#!@RCD_SCRIPTS_SHELL@ # # $NetBSD: ntpdate.sh,v 1.1 2004/03/11 20:39:40 reed Exp $ # # PROVIDE: ntpdate # REQUIRE: NETWORKING syslogd . /etc/rc.subr name="ntpdate" rcvar=$name start_cmd="ntpdate_start" stop_cmd=":" ntpdate_start() { if [ -z "$ntpdate_hosts" ]; then ntpdate_hosts=`awk ' /^server[ \t]*127.127/ {next} /^(server|peer)/ {print $2} ' <@PKG_SYSCONFDIR@/ntp.conf` fi if [ -n "$ntpdate_hosts" ]; then echo "Setting date via ntp." @PREFIX@/bin/ntpdate $rc_flags $ntpdate_hosts fi } load_rc_config $name run_rc_command "$1"