#!/bin/sh # # $NetBSD: ntpdate,v 1.20.50.1 2020/12/28 16:00:19 snj Exp $ # # PROVIDE: ntpdate # REQUIRE: NETWORKING mountcritremote syslogd named # BEFORE: ntpd $_rc_subr_loaded . /etc/rc.subr name="ntpdate" rcvar=$name command="/usr/sbin/${name}" start_cmd="ntpdate_start" stop_cmd=":" ntpdate_start() { if [ -z "$ntpdate_hosts" ]; then ntpdate_hosts=$(awk ' /^#/ { next } /^(server|peer)[ \t]*127.127/ { next } /^(server|peer|pool)/ { if ($2 ~ /^-[46]/) print $3 else print $2 } '