0696600c41
The reasons for this are forward looking to pkgbase: * /sbin/init is a special binary; try not to replace it with every package update because an rc script was touched. (a follow-up commit will make init its own package) * having rc in its own place will allow more easy replacement of the rc framework with alternatives, such as openrc. Discussed with: brd (during BSDCam), kmoore Requested by: cem, bz PR: 231522 Approved by: re (gjb)
36 lines
696 B
Bash
Executable File
36 lines
696 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ntpdate
|
|
# REQUIRE: NETWORKING syslogd
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ntpdate"
|
|
desc="Set the date and time via NTP"
|
|
rcvar="ntpdate_enable"
|
|
stop_cmd=":"
|
|
start_cmd="ntpdate_start"
|
|
|
|
ntpdate_start()
|
|
{
|
|
if [ -z "$ntpdate_hosts" -a -f "$ntpdate_config" ]; then
|
|
ntpdate_hosts=`awk '
|
|
/^server[ \t]*127.127/ {next}
|
|
/^(server|peer|pool)/ {
|
|
if ($2 ~/^-/) {print $3}
|
|
else {print $2}}
|
|
' < "$ntpdate_config"`
|
|
fi
|
|
if [ -n "$ntpdate_hosts" -o -n "$rc_flags" ]; then
|
|
echo "Setting date via ntp."
|
|
${ntpdate_program:-ntpdate} $rc_flags $ntpdate_hosts
|
|
fi
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|