X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/a8f13843566b5a52e7fd5eeff54c1939229483ac..40e04dda9c896503238eef130e6bed4f06bd1738:/cookbooks/ntp/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/ntp/recipes/default.rb b/cookbooks/ntp/recipes/default.rb index 1a762f6d1..3a9b0bb8b 100644 --- a/cookbooks/ntp/recipes/default.rb +++ b/cookbooks/ntp/recipes/default.rb @@ -42,7 +42,7 @@ template "/etc/chrony/chrony.conf" do source "chrony.conf.erb" owner "root" group "root" - mode 0o644 + mode "644" notifies :restart, "service[chrony]" end @@ -63,10 +63,15 @@ end munin_plugin "chrony" +prometheus_exporter "chrony" do + port 9123 +end + # chrony occasionally marks all servers offline during a network outage. # force online all sources during a chef run execute "chronyc-online" do command "/usr/bin/chronyc online" user "root" group "root" + ignore_failure true end