blob: 3c5898b6acc83ad682abbeee429e30c64a660a0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!@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"
|