X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/8d66a30c923fe2c0b25fb1e72677b5f9f19d6333..727eef9fdc54a7389929495ddc6007dcacf3fd36:/cookbooks/tilecache/recipes/default.rb diff --git a/cookbooks/tilecache/recipes/default.rb b/cookbooks/tilecache/recipes/default.rb index b97f2d43c..18aa14e14 100644 --- a/cookbooks/tilecache/recipes/default.rb +++ b/cookbooks/tilecache/recipes/default.rb @@ -19,10 +19,27 @@ include_recipe "squid" -expiry_time = 14 * 86400 +tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] } -tilecaches = search(:node, "roles:tilecache").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.sort_by { |n| n[:hostname] }.map do |n| - { :name => n[:hostname], :interface => n.interfaces(:role => :external).first[:interface] } +tilecaches.each do |cache| + cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address| + firewall_rule "accept-squid" do + action :accept + source "net:#{address}" + dest "fw" + proto "tcp:syn" + dest_ports "3128" + source_ports "1024:" + end + firewall_rule "accept-squid-icp" do + action :accept + source "net:#{address}" + dest "fw" + proto "udp" + dest_ports "3130" + source_ports "1024:" + end + end end squid_fragment "tilecache" do