]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/bind/recipes/default.rb
nominatim: install secondary importance file
[chef.git] / cookbooks / bind / recipes / default.rb
index 10ab7ce0bba31b4f89e205b361e57bf6f3ca5fc3..39f0ba2fddb1753170f151395c009272f748fdd6 100644 (file)
 # limitations under the License.
 #
 
-include_recipe "networking"
-
-clients = search(:node, "roles:#{node[:bind][:clients]}")
-
-ipv4_clients = clients.collect do |client|
-  client.ipaddresses(:family => :inet)
-end.flatten
-
-ipv6_clients = clients.collect do |client|
-  client.ipaddresses(:family => :inet6)
-end.flatten
-
 package "bind9"
 
 service "named" do
@@ -48,7 +36,6 @@ template "/etc/bind/named.conf.options" do
   owner "root"
   group "root"
   mode "644"
-  variables :ipv4_clients => ipv4_clients, :ipv6_clients => ipv6_clients
   notifies :restart, "service[named]"
 end