X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/0f8936ab11fc6fbbc973c5b866a5cca0397a13e2..6d4344a0b4300fd8210ee0b1e2af90d1ddfa9072:/cookbooks/dev/recipes/default.rb diff --git a/cookbooks/dev/recipes/default.rb b/cookbooks/dev/recipes/default.rb index 4b539e9c8..3a12babae 100644 --- a/cookbooks/dev/recipes/default.rb +++ b/cookbooks/dev/recipes/default.rb @@ -31,17 +31,26 @@ include_recipe "nodejs" include_recipe "php::fpm" include_recipe "postgresql" include_recipe "python" +include_recipe "ruby" package %w[ + composer + php-apcu php-cgi php-cli php-curl php-db + php-gd + php-igbinary php-imagick + php-intl + php-mbstring + php-memcache php-mysql php-pear php-pgsql php-sqlite3 + php-xml pngcrush pngquant python3 @@ -70,7 +79,10 @@ package %w[ libpqxx-dev libcrypto++-dev libyajl-dev + libfmt-dev zlib1g-dev + nano + osm2pgsql ] nodejs_package "svgo" @@ -215,15 +227,15 @@ if node[:postgresql][:clusters][:"14/main"] mode "755" end - ruby_version = node[:passenger][:ruby_version] - systemd_service "rails-jobs@" do description "Rails job queue runner" type "simple" + environment "RAILS_ENV" => "production", "SLEEP_DELAY" => "60" user "apis" working_directory "/srv/%i.apis.dev.openstreetmap.org/rails" - exec_start "/usr/local/bin/bundle#{ruby_version} exec rake jobs:work" + exec_start "#{node[:ruby][:bundle]} exec rails jobs:work" restart "on-failure" + nice 10 private_tmp true private_devices true protect_system "full" @@ -307,7 +319,6 @@ if node[:postgresql][:clusters][:"14/main"] end rails_port site_name do - ruby ruby_version directory rails_directory user "apis" group "apis"