]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/rsyncd/recipes/default.rb
Set NOKOGIRI_USE_SYSTEM_LIBRARIES while instailling the rails bundle
[chef.git] / cookbooks / rsyncd / recipes / default.rb
index 5f090d1cece202d7adc4196959934be4f9b55a35..44fef331e032bfb95744cff19ea390e9905ca765 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
@@ -31,7 +52,7 @@ template "/etc/default/rsync" do
   owner "root"
   group "root"
   mode 0644
-  notifies :restart, resources(:service => "rsync")
+  notifies :restart, "service[rsync]"
 end
 
 template "/etc/rsyncd.conf" 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