X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ad62d51f720c7df61f6486cd19c4acb277c23908..687f72cd1a2129d796bf82c0a71251c76f2ccfda:/cookbooks/dns/recipes/default.rb diff --git a/cookbooks/dns/recipes/default.rb b/cookbooks/dns/recipes/default.rb index e1233775f..7b8c5b6e7 100644 --- a/cookbooks/dns/recipes/default.rb +++ b/cookbooks/dns/recipes/default.rb @@ -41,9 +41,13 @@ package %w[ cache_dir = Chef::Config[:file_cache_path] -dnscontrol_version = "3.20.0" +dnscontrol_version = "3.21.0" -dnscontrol_arch = arm? ? "arm64" : "amd64" +dnscontrol_arch = if arm? + "arm64" + else + "amd64" + end remote_file "#{cache_dir}/dnscontrol-#{dnscontrol_version}.deb" do source "https://github.com/StackExchange/dnscontrol/releases/download/v#{dnscontrol_version}/dnscontrol-#{dnscontrol_version}.#{dnscontrol_arch}.deb" @@ -165,9 +169,23 @@ template "/usr/local/bin/dns-check" do variables :passwords => passwords, :geoservers => geoservers end -cron_d "dns" do - minute "*/3" +systemd_service "dns-check" do + description "Rebuild DNS zones with GeoDNS changes" + exec_start "/usr/local/bin/dns-check" user "git" - command "/usr/local/bin/dns-check" - mailto "admins@openstreetmap.org" + private_tmp true + private_devices true + protect_system "strict" + protect_home true + read_write_paths "/var/lib/dns" +end + +systemd_timer "dns-check" do + description "Rebuild DNS zones with GeoDNS changes" + on_boot_sec "3m" + on_unit_active_sec "3m" +end + +service "dns-check.timer" do + action [:enable, :start] end