From 370a180df11efa7a03c44d702786e6dc39d7eb9d Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 23 Nov 2022 20:26:54 +0000 Subject: [PATCH] Switch web statistics to use a systemd timer --- cookbooks/web/recipes/statistics.rb | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) 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 -- 2.45.1