]> git.openstreetmap.org Git - chef.git/commitdiff
Allow all tilecache servers to sync to the log store
authorTom Hughes <tom@compton.nu>
Tue, 1 Oct 2013 17:54:25 +0000 (18:54 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 1 Oct 2013 18:00:49 +0000 (19:00 +0100)
cookbooks/rsyncd/recipes/default.rb
cookbooks/rsyncd/templates/default/rsyncd.conf.erb
roles/ironbelly.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
index adc04a899ce3720ef8c4234df0b93454bfba75bf..c70de0ba787ca8c80bf935c141f1aa9f1601815e 100644 (file)
 <% if details[:refuse_options] -%>
      refuse options = <%= details[:refuse_options].join(" ") %>
 <% end -%>
-<% if details[:hosts_allow] -%>
-     hosts allow = <%= details[:hosts_allow].join(",") %>
+<% unless @hosts_allow[name].empty? -%>
+     hosts allow = <%= @hosts_allow[name].join(",") %>
 <% end -%>
-<% if details[:hosts_deny] -%>
-     hosts deny = <%= details[:hosts_deny].join(",") %>
+<% unless @hosts_deny[name].empty? -%>
+     hosts deny = <%= @hosts_deny[name].join(",") %>
 <% end -%>
      dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.7z
 <% end -%>
index c22a3c6c4694cdf6a4e562b41fe053212477e453..427e9ce9cdf18bdeaed961825989e97227d757e2 100644 (file)
@@ -72,7 +72,8 @@ default_attributes(
           "2001:630:12:500::/64", # ic external
           "127.0.0.0/8",          # localhost
           "::1"                   # localhost
-        ]
+        ],
+        :nodes_allow => "roles:tilecache"
       }
     }
   }