diff options
author | Cy Schubert <cy@FreeBSD.org> | 2024-07-19 18:04:43 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2024-07-22 02:37:03 +0000 |
commit | 176f8488e167ec3943108965c7c0e3e98fe167da (patch) | |
tree | fab7b2c07ea3f3163fbdd6158b45c56bae221dd9 | |
parent | c664b786ccd18bd186c59279e26fd19c6a212be4 (diff) | |
download | src-176f8488e167ec3943108965c7c0e3e98fe167da.tar.gz src-176f8488e167ec3943108965c7c0e3e98fe167da.zip |
rc.conf: Leap-seconds sources: Add IANA back
11da791920ba switched Leap-seconds source from IANA to IERS, as IERS
is the canonoical source. The problem ist that IERS is not accessible
from IPv6 only networks. To work around this we must add IANA back in
order to provide IPv6-only users a source for leap-seconds fetch.
PR: 279413
Fixes: 11da791920ba
(cherry picked from commit 66f360515d2829d261c0ad7bd516e9dd18c2dd83)
-rw-r--r-- | libexec/rc/rc.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rc/rc.conf b/libexec/rc/rc.conf index 16c44baaa68a..fab8ffb4fff9 100644 --- a/libexec/rc/rc.conf +++ b/libexec/rc/rc.conf @@ -421,7 +421,7 @@ ntp_src_leapfile="/etc/ntp/leap-seconds" # Initial source for ntpd leapfile ntp_db_leapfile="/var/db/ntpd.leap-seconds.list" # Canonical place to get the leap seconds from -ntp_leapfile_sources="https://hpiers.obspm.fr/iers/bul/bulc/ntp/leap-seconds.list" +ntp_leapfile_sources="https://hpiers.obspm.fr/iers/bul/bulc/ntp/leap-seconds.list 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 |