]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/rsyncd/recipes/default.rb
Allow all tilecache servers to sync to the log store
[chef.git] / cookbooks / rsyncd / recipes / default.rb
index 5f090d1cece202d7adc4196959934be4f9b55a35..56eb2f6ff64b2eb32588374cf23d54cb5a6d862b 100644 (file)
 
 include_recipe "networking"
 
+hosts_allow = Hash.new
+hosts_deny = Hash.new
+
+node[:rsyncd][:modules].each do |name,details|
+  hosts_allow[name] = details[:hosts_allow] || []
+
+  if details[:nodes_allow]
+    hosts_allow[name] |= search(:node, details[:nodes_allow]).collect do |n|
+      n.ipaddresses(:role => :external)
+    end.flatten
+  end
+
+  hosts_deny[name] = details[:hosts_deny] || []
+
+  if details[:nodes_deny]
+    hosts_deny[name] |= search(:node, details[:nodes_deny]).collect do |n|
+      n.ipaddresses(:role => :external)
+    end.flatten
+  end
+end
+
 package "rsync"
 
 service "rsync" do
@@ -39,6 +60,7 @@ template "/etc/rsyncd.conf" do
   owner "root"
   group "root"
   mode 0644
+  variables :hosts_allow => hosts_allow, :hosts_deny => hosts_deny
 end
 
 firewall_rule "accept-rsync" do