opnsense-src/contrib/ntp/scripts/rc/rc.d/ntpwait
Cy Schubert 2b15cb3d09 MFV ntp 4.2.8p1 (r258945, r275970, r276091, r276092, r276093, r278284)
Thanks to roberto for providing pointers to wedge this into HEAD.

Approved by:	roberto
2015-03-30 13:30:15 +00:00

21 lines
346 B
Bash

#!/bin/sh
# This script, when run, runs ntp-wait if ntpd is enabled.
# PROVIDE: ntpwait
. /etc/rc.subr
name="ntpwait"
rcvar="ntpwait_enable"
start_cmd="ntpwait_start"
ntp_wait="/usr/sbin/ntp-wait"
load_rc_config "$name"
ntpwait_start() {
if checkyesno ntpd_enable; then
$ntp_wait -v
fi
}
run_rc_command "$1"