X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/18e12b0e123fc3e5f344682f884feabc12da0f5a..269b5b28ccf95dd4b96cac3f51168ea3280c83db:/cookbooks/dns/recipes/default.rb diff --git a/cookbooks/dns/recipes/default.rb b/cookbooks/dns/recipes/default.rb index 8a1f42ea8..6bf913cb3 100644 --- a/cookbooks/dns/recipes/default.rb +++ b/cookbooks/dns/recipes/default.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: dns +# Cookbook:: dns # Recipe:: default # -# Copyright 2011, OpenStreetMap Foundation +# Copyright:: 2011, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -20,10 +20,14 @@ include_recipe "git" include_recipe "apache" +geoservers = search(:node, "roles:geodns").collect(&:name).sort + passwords = data_bag_item("dns", "passwords") package %w[ make + parallel + rsync perl libxml-treebuilder-perl libxml-writer-perl @@ -32,6 +36,14 @@ package %w[ libjson-xs-perl ] +# remote_file "/usr/local/bin/dnscontrol" do +# action :create +# source "https://github.com/StackExchange/dnscontrol/releases/download/v2.10.0/dnscontrol-Linux" +# owner "root" +# group "root" +# mode 0o755 +# end + directory "/srv/dns.openstreetmap.org" do owner "root" group "root" @@ -73,13 +85,14 @@ template "/srv/dns.openstreetmap.org/html/index.html" do end ssl_certificate "dns.openstreetmap.org" do - domains "dns.openstreetmap.org" + domains ["dns.openstreetmap.org", "dns.osm.org"] notifies :reload, "service[apache2]" end apache_site "dns.openstreetmap.org" do template "apache.erb" directory "/srv/dns.openstreetmap.org" + variables :aliases => ["dns.osm.org"] end template "/usr/local/bin/dns-update" do @@ -87,7 +100,14 @@ template "/usr/local/bin/dns-update" do owner "root" group "git" mode 0o750 - variables :passwords => passwords + variables :passwords => passwords, :geoservers => geoservers +end + +cookbook_file "/usr/local/bin/dns-update-sshfp" do + source "dns-update-sshfp" + owner "git" + group "git" + mode 0o750 end execute "dns-update" do @@ -104,6 +124,22 @@ directory "/var/lib/dns" do notifies :run, "execute[dns-update]" end +template "/var/lib/dns/creds.json" do + source "creds.json.erb" + owner "git" + group "git" + mode 0o440 + variables :passwords => passwords +end + +execute "dns-update-sshfp" do + action :nothing + command "/usr/local/bin/dns-update-sshfp" + user "git" + group "git" + subscribes :run, "template[/etc/ssh/ssh_known_hosts]" +end + cookbook_file "#{node[:dns][:repository]}/hooks/post-receive" do source "post-receive" owner "git" @@ -116,7 +152,7 @@ template "/usr/local/bin/dns-check" do owner "root" group "git" mode 0o750 - variables :passwords => passwords + variables :passwords => passwords, :geoservers => geoservers end template "/etc/cron.d/dns" do