X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/32a423888e0d6b5254c55e4faf418b31749dc69e..efdd5e8683ca3fc786fc6905ef8e0434f3db2a5e:/cookbooks/dev/recipes/default.rb diff --git a/cookbooks/dev/recipes/default.rb b/cookbooks/dev/recipes/default.rb index 08af7112b..80b80586b 100644 --- a/cookbooks/dev/recipes/default.rb +++ b/cookbooks/dev/recipes/default.rb @@ -26,6 +26,7 @@ include_recipe "git" include_recipe "mysql" include_recipe "nodejs" include_recipe "postgresql" +include_recipe "python" package "php" package "php-cgi" @@ -54,7 +55,7 @@ package "python-gdal" nodejs_package "svgo" -easy_install_package "geojson" +python_package "geojson" apache_module "env" apache_module "expires" @@ -112,7 +113,7 @@ search(:accounts, "*:*").each do |account| name = account["id"] details = node[:accounts][:users][name] || {} - next unless %w(user administrator).include?(details[:status]) + next unless %w[user administrator].include?(details[:status]) user_home = details[:home] || account["home"] || "#{node[:accounts][:home]}/#{name}"