X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6c1eca2b583b258a9086693997b033d24378aae1..558691451db4f029698b996d7df8c8cf272b3b8b:/cookbooks/tile/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/tile/recipes/default.rb b/cookbooks/tile/recipes/default.rb index 7f09a2777..b49223225 100644 --- a/cookbooks/tile/recipes/default.rb +++ b/cookbooks/tile/recipes/default.rb @@ -25,6 +25,7 @@ include_recipe "nodejs" include_recipe "postgresql" include_recipe "prometheus" include_recipe "python" +include_recipe "ruby" include_recipe "tools" blocks = data_bag_item("tile", "blocks") @@ -156,6 +157,7 @@ end package %w[ python3-cairo python3-mapnik + python3-pyproj python3-setuptools ] @@ -508,15 +510,22 @@ end package %w[ osm2pgsql - ruby osmium-tool pyosmium python3-pyproj ] -gem_package "apachelogregex" -gem_package "file-tail" -gem_package "lru_redux" +gem_package "apachelogregex" do + gem_binary node[:ruby][:gem] +end + +gem_package "file-tail" do + gem_binary node[:ruby][:gem] +end + +gem_package "lru_redux" do + gem_binary node[:ruby][:gem] +end remote_directory "/usr/local/bin" do source "bin"