]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/ntp/recipes/default.rb
Update to tilelog 1.6.1
[chef.git] / cookbooks / ntp / recipes / default.rb
index 1a762f6d1adaa81f2e8cccd2928eff0bf4c3cf7f..3a9b0bb8bc2fb2d4eb97a64d2a0fd34eb142a47e 100644 (file)
@@ -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