]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/ntp/recipes/default.rb
chrony: safe to ignore online failures
[chef.git] / cookbooks / ntp / recipes / default.rb
index 1f875cdcc83e6a41af8ce0516a42c27c4ab6bf5c..da5ff81933b24920121cc6a8c6bee384aa678018 100644 (file)
@@ -62,3 +62,12 @@ service "chrony" do
 end
 
 munin_plugin "chrony"
+
+# 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