X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ba65c5618d3113373c0f3306ce993917fc2af23a..fb49e140d099aef0f3c8e0e6209171a5cbfb513c:/cookbooks/ntp/recipes/default.rb diff --git a/cookbooks/ntp/recipes/default.rb b/cookbooks/ntp/recipes/default.rb index 1f875cdcc..02c80bc01 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 @@ -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