62dede6565
The rc.d scripts are based on official NetBSD scripts. This also adds: CONFIGURE_ARGS+=--sysconfdir=${PKG_SYSCONFDIR} This was discussed and okayed with maintainer, fredb, in February, Currently, the ntpd.sh rc.d script has a note about the ntpd_chrootdir is only for NetBSD at this time. (Because I haven't tested under other operating systems.)
31 lines
563 B
Bash
Executable file
31 lines
563 B
Bash
Executable file
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: ntpdate.sh,v 1.1 2004/03/11 20:39:40 reed 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}
|
|
' <@PKG_SYSCONFDIR@/ntp.conf`
|
|
fi
|
|
if [ -n "$ntpdate_hosts" ]; then
|
|
echo "Setting date via ntp."
|
|
@PREFIX@/bin/ntpdate $rc_flags $ntpdate_hosts
|
|
fi
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|