2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-07-19 07:22:09 +04:00
|
|
|
# $NetBSD: ntpdate,v 1.9 2002/07/19 03:22:09 bad Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: ntpdate
|
2002-01-31 04:26:05 +03:00
|
|
|
# REQUIRE: NETWORKING 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 '
|
2002-07-19 07:22:09 +04:00
|
|
|
/^(server|peer)[ \t]*127.127/ {next}
|
2000-03-10 14:53:23 +03:00
|
|
|
/^(server|peer)/ {print $2}
|
|
|
|
' </etc/ntp.conf`
|
|
|
|
fi
|
|
|
|
if [ -n "$ntpdate_hosts" ]; then
|
|
|
|
echo "Setting date via ntp."
|
2002-03-22 07:16:38 +03:00
|
|
|
ntpdate $rc_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"
|