]> git.openstreetmap.org Git - chef.git/commitdiff
Use a systemd timer to update the blog aggregator
authorTom Hughes <tom@compton.nu>
Thu, 27 Oct 2022 21:33:26 +0000 (22:33 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 27 Oct 2022 21:35:36 +0000 (22:35 +0100)
cookbooks/blogs/recipes/default.rb

index 51e6b62f41f9634f4452a9bb4bfa0b6e44df263c..681118f959f5dbcf1a56b8f1932cdc9f4f29e8b0 100644 (file)
@@ -78,11 +78,25 @@ template "/usr/local/bin/blogs-update" do
   mode "0755"
 end
 
-cron_d "blogs" do
-  minute "*/30"
+systemd_service "blogs-update" do
+  description "Update blog aggregator"
+  exec_start "/usr/local/bin/blogs-update"
   user "blogs"
-  command "/usr/local/bin/blogs-update"
-  mailto "admins@openstreetmap.org"
+  private_tmp true
+  private_devices true
+  protect_system "strict"
+  protect_home true
+  read_write_paths "/srv/blogs.openstreetmap.org"
+end
+
+systemd_timer "blogs-update" do
+  description "Update blog aggregator"
+  on_boot_sec "15m"
+  on_unit_inactive_sec "30m"
+end
+
+service "blogs-update.timer" do
+  action [:enable, :start]
 end
 
 template "/etc/cron.daily/blogs-backup" do