]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/rsyncd/recipes/default.rb
Fix more rubocop detected style issues
[chef.git] / cookbooks / rsyncd / recipes / default.rb
index 44fef331e032bfb95744cff19ea390e9905ca765..fc0c4a5041a6acefd4cb8604e148ee00b7f768d4 100644 (file)
 
 include_recipe "networking"
 
-hosts_allow = Hash.new
-hosts_deny = Hash.new
+hosts_allow = {}
+hosts_deny = {}
 
-node[:rsyncd][:modules].each do |name,details|
+node[:rsyncd][:modules].each do |name, details|
   hosts_allow[name] = details[:hosts_allow] || []
 
   if details[:nodes_allow]