X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/4e3259a9a87be028b3a591661c386485e4a2a7fc..6cfcfbe0138f1b11e9a62bd8193e729126f617ee:/cookbooks/web/recipes/rails.rb?ds=sidebyside diff --git a/cookbooks/web/recipes/rails.rb b/cookbooks/web/recipes/rails.rb index 1a8ef4122..6616c49f0 100644 --- a/cookbooks/web/recipes/rails.rb +++ b/cookbooks/web/recipes/rails.rb @@ -37,8 +37,8 @@ end rails_directory = "#{node[:web][:base_directory]}/rails" -piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k,v| - ["chef_type", "data_bag", "id"].include?(k) +piwik_configuration = data_bag_item("web", "piwik").to_hash.reject do |k, _| + %w(chef_type data_bag id).include?(k) end rails_port "www.openstreetmap.org" do @@ -62,7 +62,7 @@ rails_port "www.openstreetmap.org" do gpx_dir "/store/rails/gpx" attachments_dir "/store/rails/attachments" log_path "#{node[:web][:log_directory]}/rails.log" - memcache_servers [ "rails1", "rails2", "rails3" ] + memcache_servers %w(rails1 rails2 rails3) potlatch2_key web_passwords["potlatch2_key"] id_key web_passwords["id_key"] oauth_key web_passwords["oauth_key"]