From: Tom Hughes Date: Wed, 29 Apr 2015 09:40:45 +0000 (+0100) Subject: Don't install rubygems on 14.04 X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/e051122790c1ad8fda6cff83bd3ecb84380ef738 Don't install rubygems on 14.04 --- diff --git a/cookbooks/tile/recipes/default.rb b/cookbooks/tile/recipes/default.rb index 85af49c46..89212c2ee 100644 --- a/cookbooks/tile/recipes/default.rb +++ b/cookbooks/tile/recipes/default.rb @@ -392,7 +392,10 @@ package "osm2pgsql" package "osmosis" package "ruby" -package "rubygems" + +if node[:lsb][:release].to_f < 14.04 + package "rubygems" +end package "libproj-dev" package "libxml2-dev"