]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/web/recipes/statistics.rb
Switch web statistics to use a systemd timer
[chef.git] / cookbooks / web / recipes / statistics.rb
index 29ee80e6c71af6cef064fe83651740a4e772b115..3ced1f4d61754075582940aebb5efe39f44fd75d 100644 (file)
@@ -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