#
-# 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.
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
owner "root"
group "git"
mode 0o750
- variables :passwords => passwords
+ variables :passwords => passwords, :geoservers => geoservers
end
execute "dns-update" do
owner "root"
group "git"
mode 0o750
- variables :passwords => passwords
+ variables :passwords => passwords, :geoservers => geoservers
end
template "/etc/cron.d/dns" do