5 # Copyright:: 2011, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # https://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
21 include_recipe "apache"
23 geoservers = search(:node, "roles:geodns").collect(&:name).sort
25 passwords = data_bag_item("dns", "passwords")
32 libxml-treebuilder-perl
39 # remote_file "/usr/local/bin/dnscontrol" do
41 # source "https://github.com/StackExchange/dnscontrol/releases/download/v2.10.0/dnscontrol-Linux"
47 directory "/srv/dns.openstreetmap.org" do
53 remote_directory "/srv/dns.openstreetmap.org/html" do
65 Dir.glob("/var/lib/dns/json/*.json").each do |kmlfile|
66 zone = File.basename(kmlfile, ".json")
68 template "/srv/dns.openstreetmap.org/html/#{zone}.html" do
69 source "zone.html.erb"
73 variables :zone => zone
79 template "/srv/dns.openstreetmap.org/html/index.html" do
80 source "index.html.erb"
84 variables :zones => zones
87 ssl_certificate "dns.openstreetmap.org" do
88 domains ["dns.openstreetmap.org", "dns.osm.org"]
89 notifies :reload, "service[apache2]"
92 apache_site "dns.openstreetmap.org" do
94 directory "/srv/dns.openstreetmap.org"
95 variables :aliases => ["dns.osm.org"]
98 template "/usr/local/bin/dns-update" do
99 source "dns-update.erb"
103 variables :passwords => passwords, :geoservers => geoservers
106 execute "dns-update" do
108 command "/usr/local/bin/dns-update"
113 directory "/var/lib/dns" do
117 notifies :run, "execute[dns-update]"
120 template "/var/lib/dns/creds.json" do
121 source "creds.json.erb"
125 variables :passwords => passwords
128 cookbook_file "#{node[:dns][:repository]}/hooks/post-receive" do
129 source "post-receive"
135 template "/usr/local/bin/dns-check" do
136 source "dns-check.erb"
140 variables :passwords => passwords, :geoservers => geoservers
143 template "/etc/cron.d/dns" do