2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2000-09-19 17:04:38 +04:00
|
|
|
# $NetBSD: ntpdate,v 1.6 2000/09/19 13:04:39 lukem Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: ntpdate
|
2000-07-26 04:11:48 +04:00
|
|
|
# REQUIRE: NETWORK syslogd
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="ntpdate"
|
2000-09-19 17:04:38 +04:00
|
|
|
rcvar=$name
|
2000-03-10 14:53:23 +03:00
|
|
|
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}
|
|
|
|
' </etc/ntp.conf`
|
|
|
|
fi
|
|
|
|
if [ -n "$ntpdate_hosts" ]; then
|
|
|
|
echo "Setting date via ntp."
|
2000-08-21 18:48:39 +04:00
|
|
|
ntpdate $ntpdate_flags $ntpdate_hosts
|
2000-03-10 14:53:23 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-03-10 14:53:23 +03:00
|
|
|
run_rc_command "$1"
|