0bdb9e0220
in keeping the scripts under rc.d in sync with us. So, begin removal of NetBSD specific stuff (which made our scripts more complicated than necessary), starting with the NetBSD KEYWORD.
44 lines
714 B
Bash
Executable File
44 lines
714 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: ntpdate,v 1.8 2002/03/22 04:16:39 lukem Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ntpdate
|
|
# REQUIRE: NETWORKING syslogd
|
|
# KEYWORD: FreeBSD
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ntpdate"
|
|
rcvar=`set_rcvar`
|
|
|
|
case ${OSTYPE} in
|
|
FreeBSD)
|
|
command="/usr/sbin/${name}"
|
|
command_args=">/dev/null 2>&1"
|
|
pidfile="/var/run/${name}.pid"
|
|
;;
|
|
NetBSD)
|
|
start_cmd="ntpdate_start"
|
|
stop_cmd=":"
|
|
;;
|
|
esac
|
|
|
|
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"
|