X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/d7239900c012c14afb3af416740b161bbdd268af..d6c3c3bc6b45204974784125bd0843a0b28ce9aa:/cookbooks/ntp/templates/default/chrony.conf.erb?ds=sidebyside diff --git a/cookbooks/ntp/templates/default/chrony.conf.erb b/cookbooks/ntp/templates/default/chrony.conf.erb index 11c702fcc..1cae6d797 100644 --- a/cookbooks/ntp/templates/default/chrony.conf.erb +++ b/cookbooks/ntp/templates/default/chrony.conf.erb @@ -1,17 +1,31 @@ # DO NOT EDIT - This file is being maintained by Chef +<% if node[:lsb][:release].to_f >= 22.04 -%> +# Include configuration files found in /etc/chrony/conf.d. +confdir /etc/chrony/conf.d +<% end -%> + # Servers <% node[:ntp][:servers].each do |server| -%> pool <%= server %> iburst <% end -%> # Add additional non-pool NTP servers # pool.ntp.org can sometimes be aggressive with KoD -pool time.cloudflare.com iburst maxsources 2 -pool time.google.com iburst maxsources 2 +pool time.cloudflare.com iburst +pool time.google.com iburst + +# Allow local queries for monitoring +allow 127.0.0.1/32 +allow ::1/128 # Run an initial NTP sync on daemon startup initstepslew 30 time.cloudflare.com time.google.com <%= node[:ntp][:servers].join(" ") %> +<% if node[:lsb][:release].to_f >= 22.04 -%> +# Use NTP sources found in /etc/chrony/sources.d. +sourcedir /etc/chrony/sources.d +<% end -%> + # This directive specify the location of the file containing ID/key pairs for # NTP authentication. keyfile /etc/chrony/chrony.keys @@ -20,6 +34,11 @@ keyfile /etc/chrony/chrony.keys # information. driftfile /var/lib/chrony/chrony.drift +<% if node[:lsb][:release].to_f >= 22.04 -%> +# Save NTS keys and cookies. +ntsdumpdir /var/lib/chrony +<% end -%> + # Uncomment the following line to turn logging on. #log tracking measurements statistics @@ -45,3 +64,6 @@ makestep 1 3 # Enable leap second slew leapsecmode slew maxslewrate 1000 + +# Enable hardware timestamps if available +hwtimestamp *