X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/2e17bd4b4697423f9c124cfdb802424a58c16d80..d996203ad3b0a08b61513d94f3f88e594bfe7351:/cookbooks/bind/recipes/default.rb diff --git a/cookbooks/bind/recipes/default.rb b/cookbooks/bind/recipes/default.rb index 10ab7ce0b..39f0ba2fd 100644 --- a/cookbooks/bind/recipes/default.rb +++ b/cookbooks/bind/recipes/default.rb @@ -17,18 +17,6 @@ # 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