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 # http://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 passwords = data_bag_item("dns", "passwords")
28 package "libxml-treebuilder-perl"
29 package "libxml-writer-perl"
30 package "libyaml-perl"
32 package "libjson-xs-perl"
33 package "liblwp-useragent-determined-perl"
35 directory "/srv/dns.openstreetmap.org" do
41 remote_directory "/srv/dns.openstreetmap.org/html" do
53 Dir.glob("/var/lib/dns/json/*.json").each do |kmlfile|
54 zone = File.basename(kmlfile, ".json")
56 template "/srv/dns.openstreetmap.org/html/#{zone}.html" do
57 source "zone.html.erb"
61 variables :zone => zone
67 template "/srv/dns.openstreetmap.org/html/index.html" do
68 source "index.html.erb"
72 variables :zones => zones
75 apache_site "dns.openstreetmap.org" do
77 directory "/srv/dns.openstreetmap.org"
80 template "/usr/local/bin/dns-update" do
81 source "dns-update.erb"
85 variables :passwords => passwords
88 execute "dns-update" do
90 command "/usr/local/bin/dns-update"
95 directory "/var/lib/dns" do
99 notifies :run, resources(:execute => "dns-update")
102 cookbook_file "#{node[:dns][:repository]}/hooks/post-receive" do
103 source "post-receive"
109 template "/usr/local/bin/dns-check" do
110 source "dns-check.erb"
114 variables :passwords => passwords
117 template "/etc/cron.d/dns" do