X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/eecaf26698348adf3d3b64ea680ad82f959a5ae4..9cb89866d2aea9415aaebc184a5ffd5c467899d5:/cookbooks/taginfo/recipes/default.rb diff --git a/cookbooks/taginfo/recipes/default.rb b/cookbooks/taginfo/recipes/default.rb index 538341521..e709545ad 100644 --- a/cookbooks/taginfo/recipes/default.rb +++ b/cookbooks/taginfo/recipes/default.rb @@ -21,8 +21,10 @@ require "json" include_recipe "accounts" include_recipe "apache" -include_recipe "passenger" include_recipe "git" +include_recipe "passenger" +include_recipe "planet::current" +include_recipe "ruby" package %w[ libsqlite3-dev @@ -50,17 +52,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" @@ -78,6 +69,25 @@ template "/etc/sudoers.d/taginfo" do mode "440" end +systemd_service "taginfo-update@" do + description "Taginfo update for %i" + wants "planet-update.service" + after "planet-update.service" + exec_start "/srv/%i/bin/update" + user "taginfo" + sandbox :enable_network => true + read_write_paths [ + "/srv/%i/data", + "/srv/%i/sources", + "/var/log/taginfo/%i" + ] +end + +systemd_timer "taginfo-update@" do + description "Taginfo update for %i" + on_calendar "01:37" +end + node[:taginfo][:sites].each do |site| site_name = site[:name] site_aliases = Array(site[:aliases]) @@ -165,13 +175,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 @@ -206,12 +213,8 @@ node[:taginfo][:sites].each do |site| directory "#{directory}/taginfo/web/public" variables :aliases => site_aliases end -end -template "/usr/local/bin/taginfo-update" do - source "taginfo-update.erb" - owner "root" - group "root" - mode "755" - variables :sites => node[:taginfo][:sites] + service "taginfo-update@#{site_name}.timer" do + action [:enable, :start] + end end