X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/e698e02106fc290ff3e530f5de66a91868a7f1f8..5dcf5ef21d1ba91a71b5497f2c9745620a6008d0:/cookbooks/dns/recipes/default.rb diff --git a/cookbooks/dns/recipes/default.rb b/cookbooks/dns/recipes/default.rb index 057daf55c..04d2fe343 100644 --- a/cookbooks/dns/recipes/default.rb +++ b/cookbooks/dns/recipes/default.rb @@ -39,28 +39,42 @@ package %w[ lockfile-progs ] -remote_file "/usr/local/bin/dnscontrol" do - action :create - source "https://github.com/StackExchange/dnscontrol/releases/download/v3.2.0/dnscontrol-Linux" +cache_dir = Chef::Config[:file_cache_path] + +dnscontrol_version = "3.19.0" + +remote_file "#{cache_dir}/dnscontrol_amd64.deb" do + source "https://github.com/StackExchange/dnscontrol/releases/download/v#{dnscontrol_version}/dnscontrol_#{dnscontrol_version}_amd64.deb" owner "root" group "root" - mode 0o755 + mode "644" + backup false +end + +dpkg_package "dnscontrol" do + action :nothing + source "#{cache_dir}/dnscontrol_amd64.deb" + subscribes :install, "remote_file[#{cache_dir}/dnscontrol_amd64.deb]" +end + +file "/usr/local/bin/dnscontrol" do + action :delete end directory "/srv/dns.openstreetmap.org" do owner "root" group "root" - mode 0o755 + mode "755" end remote_directory "/srv/dns.openstreetmap.org/html" do source "html" owner "root" group "root" - mode 0o755 + mode "755" files_owner "root" files_group "root" - files_mode 0o644 + files_mode "644" end zones = [] @@ -72,7 +86,7 @@ Dir.glob("/var/lib/dns/json/*.json").each do |kmlfile| source "zone.html.erb" owner "root" group "root" - mode 0o644 + mode "644" variables :zone => zone end @@ -83,7 +97,7 @@ template "/srv/dns.openstreetmap.org/html/index.html" do source "index.html.erb" owner "root" group "root" - mode 0o644 + mode "644" variables :zones => zones end @@ -102,7 +116,7 @@ template "/usr/local/bin/dns-update" do source "dns-update.erb" owner "root" group "git" - mode 0o750 + mode "750" variables :passwords => passwords, :geoservers => geoservers end @@ -116,7 +130,7 @@ end directory "/var/lib/dns" do owner "git" group "git" - mode 0o2775 + mode "2775" notifies :run, "execute[dns-update]" end @@ -124,15 +138,24 @@ template "/var/lib/dns/creds.json" do source "creds.json.erb" owner "git" group "git" - mode 0o440 + mode "440" variables :passwords => passwords end +template "/var/lib/dns/include/geo.js" do + source "geo.js.erb" + owner "git" + group "git" + mode "440" + variables :geoservers => geoservers + only_if { ::Dir.exist?("/var/lib/dns/include") } +end + cookbook_file "#{node[:dns][:repository]}/hooks/post-receive" do source "post-receive" owner "git" group "git" - mode 0o750 + mode "750" only_if { ::Dir.exist?("#{node[:dns][:repository]}/hooks") } end @@ -140,7 +163,7 @@ template "/usr/local/bin/dns-check" do source "dns-check.erb" owner "root" group "git" - mode 0o750 + mode "750" variables :passwords => passwords, :geoservers => geoservers end