1a286b1407
make them "externally" available: Previous Current Purpose -------- ------- ------- _arg rc_arg Argument to command, after fast/force processing performed (and prefix removed) _flags rc_flags Flags to start the default command with. Defaults to ${name}_flags, unless overridden by $flags from the environment. This variable may be changed by the precmd method. _pid rc_pid PID of command (if appropriate). _rc_run_fast rc_fast Not empty is "fast" was provided. _rc_run_force rc_force Not empty is "force" was provided. - Use rc_flags instead of _flags or ${name}_flags in various rc.d scripts, so that $flags from the environment overrides ${name}_flags from rc.conf(5). Fixes [bin/15800].
32 lines
524 B
Bash
Executable File
32 lines
524 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: ntpdate,v 1.8 2002/03/22 04:16:39 lukem 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}
|
|
' </etc/ntp.conf`
|
|
fi
|
|
if [ -n "$ntpdate_hosts" ]; then
|
|
echo "Setting date via ntp."
|
|
ntpdate $rc_flags $ntpdate_hosts
|
|
fi
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|