X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6da8c71cb11f27690cb9a3a6cbbbec813e2a3ba2..370a180df11efa7a03c44d702786e6dc39d7eb9d:/cookbooks/web/recipes/statistics.rb diff --git a/cookbooks/web/recipes/statistics.rb b/cookbooks/web/recipes/statistics.rb index 29ee80e6c..3ced1f4d6 100644 --- a/cookbooks/web/recipes/statistics.rb +++ b/cookbooks/web/recipes/statistics.rb @@ -30,9 +30,23 @@ template "/usr/local/bin/statistics" do variables :ruby => ruby, :directory => rails_directory end -cron_d "statistics" do - minute "0" - hour "0" +systemd_service "web-statistics" do + description "Generate web statistics" + exec_start "/usr/local/bin/statistics" user "rails" - command "/usr/local/bin/statistics" + sandbox :enable_network => true + read_write_paths "#{rails_directory}/tmp" +end + +systemd_timer "web-statistics" do + description "Generate web statistics" + on_calendar "00:00:00" +end + +cron_d "statistics" do + action :delete +end + +service "web-statistics.timer" do + action [:enable, :start] end