]> git.openstreetmap.org Git - chef.git/blob - cookbooks/ntp/templates/default/chrony.conf.erb
11c702fccb6219dfe8dae55ce3bd7ffbdb47d0a2
[chef.git] / cookbooks / ntp / templates / default / chrony.conf.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 # Servers
4 <% node[:ntp][:servers].each do |server| -%>
5 pool <%= server %> iburst
6 <% end -%>
7 # Add additional non-pool NTP servers
8 # pool.ntp.org can sometimes be aggressive with KoD
9 pool time.cloudflare.com iburst maxsources 2
10 pool time.google.com iburst maxsources 2
11
12 # Run an initial NTP sync on daemon startup
13 initstepslew 30 time.cloudflare.com time.google.com <%= node[:ntp][:servers].join(" ") %>
14
15 # This directive specify the location of the file containing ID/key pairs for
16 # NTP authentication.
17 keyfile /etc/chrony/chrony.keys
18
19 # This directive specify the file into which chronyd will store the rate
20 # information.
21 driftfile /var/lib/chrony/chrony.drift
22
23 # Uncomment the following line to turn logging on.
24 #log tracking measurements statistics
25
26 # Log files location.
27 logdir /var/log/chrony
28
29 # Stop bad estimates upsetting machine clock.
30 maxupdateskew 100.0
31
32 # This directive enables kernel synchronisation (every 11 minutes) of the
33 # real-time clock. Note that it can’t be used along with the 'rtcfile' directive.
34 rtcsync
35
36 <% if node[:virtualization][:role] == "guest" -%>
37 # Allow anytime step on VM guests
38 makestep 1 -1
39 <% else -%>
40 # Step the system clock instead of slewing it if the adjustment is larger than
41 # one second, but only in the first three clock updates.
42 makestep 1 3
43 <% end -%>
44
45 # Enable leap second slew
46 leapsecmode slew
47 maxslewrate 1000