]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilecache/recipes/default.rb
Tilecache: Firewall allow ICP traffic between caches
[chef.git] / cookbooks / tilecache / recipes / default.rb
index b97f2d43ce692dc2339e692c74e7162dfc4c6b12..fbd8ef64d89c733263129cbdda63de93c4bdc008 100644 (file)
 
 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