From 4380109533e526a6cedd2a6be2c7c5102703dd52 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Mon, 22 Sep 2025 10:40:29 +0100 Subject: [PATCH] ntp: Use server instead of pool for backup Google NTP servers pool re-resolves, but Google NTP servers are static. --- cookbooks/ntp/templates/default/chrony.conf.erb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cookbooks/ntp/templates/default/chrony.conf.erb b/cookbooks/ntp/templates/default/chrony.conf.erb index b3948809d..6d9a74999 100644 --- a/cookbooks/ntp/templates/default/chrony.conf.erb +++ b/cookbooks/ntp/templates/default/chrony.conf.erb @@ -12,7 +12,10 @@ pool <%= server %> iburst # Add additional non-pool NTP servers # pool.ntp.org can sometimes be aggressive with KoD pool time.cloudflare.com iburst -pool time.google.com iburst +server time1.google.com iburst +server time2.google.com iburst +server time3.google.com iburst +server time4.google.com iburst # Allow local queries for monitoring allow 127.0.0.1/32 -- 2.39.5