svn commit: r203200 - head/etc/rc.d

Hajimu UMEMOTO ume at FreeBSD.org
Sat Jan 30 16:34:52 UTC 2010


Author: ume
Date: Sat Jan 30 16:34:52 2010
New Revision: 203200
URL: http://svn.freebsd.org/changeset/base/203200

Log:
  Allow use of -6 option to "server" and "peer" in ntp.conf.
  
  MFC after:	1 week

Modified:
  head/etc/rc.d/ntpdate

Modified: head/etc/rc.d/ntpdate
==============================================================================
--- head/etc/rc.d/ntpdate	Sat Jan 30 15:53:32 2010	(r203199)
+++ head/etc/rc.d/ntpdate	Sat Jan 30 16:34:52 2010	(r203200)
@@ -19,7 +19,9 @@ ntpdate_start()
 	if [ -z "$ntpdate_hosts" -a -f ${ntpdate_config} ]; then
 		ntpdate_hosts=`awk '
 			/^server[ \t]*127.127/      {next}
-			/^(server|peer)/            {print $2}
+			/^(server|peer)/            {
+			    if ($2 ~/^-/)           {print $3}
+			    else                    {print $2}}
 		' < ${ntpdate_config}`
 	fi
 	if [ -n "$ntpdate_hosts" -o -n "$rc_flags" ]; then


More information about the svn-src-head mailing list