Date: Sat, 16 Dec 2023 02:32:34 GMT From: Philip Paeps <philip@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 163c43423815 - stable/14 - rc.conf: correct $ntp_leapfile_sources Message-ID: <202312160232.3BG2WYDA087865@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by philip: URL: https://cgit.FreeBSD.org/src/commit/?id=163c4342381530cfc5dc78a457cb1f9e355d687a commit 163c4342381530cfc5dc78a457cb1f9e355d687a Author: Philip Paeps <philip@FreeBSD.org> AuthorDate: 2023-12-07 05:48:13 +0000 Commit: Philip Paeps <philip@FreeBSD.org> CommitDate: 2023-12-16 02:31:41 +0000 rc.conf: correct $ntp_leapfile_sources IETF is no longer serving leap-seconds.list. Point at IANA instead. This fixes "service ntpd fetch". (cherry picked from commit b1c95af45488bef649e9a84890e2414ff80b3a00) --- libexec/rc/rc.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/rc/rc.conf b/libexec/rc/rc.conf index f5d0605c8436..c92bb0135f4d 100644 --- a/libexec/rc/rc.conf +++ b/libexec/rc/rc.conf @@ -422,7 +422,7 @@ ntp_src_leapfile="/etc/ntp/leap-seconds" # Initial source for ntpd leapfile ntp_db_leapfile="/var/db/ntpd.leap-seconds.list" # Working copy (updated weekly) leapfile -ntp_leapfile_sources="https://www.ietf.org/timezones/data/leap-seconds.list" +ntp_leapfile_sources="https://data.iana.org/time-zones/tzdb/leap-seconds.list" # Source from which to fetch leapfile ntp_leapfile_fetch_opts="-mq" # Options to use for ntp leapfile fetch, # e.g. --no-verify-peer
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202312160232.3BG2WYDA087865>