X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/eecaf26698348adf3d3b64ea680ad82f959a5ae4..696cccec95ba2c731c8f6d80ba906161ad93c7b2:/cookbooks/taginfo/recipes/default.rb diff --git a/cookbooks/taginfo/recipes/default.rb b/cookbooks/taginfo/recipes/default.rb index 538341521..ba25e9984 100644 --- a/cookbooks/taginfo/recipes/default.rb +++ b/cookbooks/taginfo/recipes/default.rb @@ -21,8 +21,9 @@ require "json" include_recipe "accounts" include_recipe "apache" -include_recipe "passenger" include_recipe "git" +include_recipe "passenger" +include_recipe "ruby" package %w[ libsqlite3-dev @@ -50,17 +51,6 @@ package %w[ pbzip2 ] -ruby_version = node[:passenger][:ruby_version] - -package "ruby#{ruby_version}" - -gem_package "bundler#{ruby_version}" do - package_name "bundler" - version "~> 1.16.2" - gem_binary "gem#{ruby_version}" - options "--format-executable" -end - apache_module "cache" apache_module "cache_disk" apache_module "headers" @@ -165,13 +155,10 @@ node[:taginfo][:sites].each do |site| notifies :restart, "service[apache2]" end - execute "#{directory}/taginfo/Gemfile" do + bundle_install "#{directory}/taginfo" do action :nothing - command "bundle#{ruby_version} install" - cwd "#{directory}/taginfo" user "root" group "root" - subscribes :run, "gem_package[bundler#{ruby_version}]" subscribes :run, "git[#{directory}/taginfo]" notifies :restart, "passenger_application[#{directory}/taginfo/web/public]" end