X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/23c4279fe05d18732612be640d7fc7c053da1566..586d197702be461402f6837edf1ef6c612c1f0a7:/cookbooks/planet/recipes/dump.rb diff --git a/cookbooks/planet/recipes/dump.rb b/cookbooks/planet/recipes/dump.rb index 5f04bf1d7..39c8196dd 100644 --- a/cookbooks/planet/recipes/dump.rb +++ b/cookbooks/planet/recipes/dump.rb @@ -61,7 +61,7 @@ end git "/opt/planet-dump-ng" do action :sync repository "https://github.com/zerebubuth/planet-dump-ng.git" - revision "v1.2.3" + revision "v1.2.6" depth 1 user "root" group "root" @@ -115,15 +115,31 @@ systemd_service "planetdump@" do user "www-data" exec_start "/usr/local/bin/planetdump %i" memory_max "64G" - private_tmp true - protect_system "full" - protect_home true - read_write_paths "/var/log/exim4" + sandbox true + read_write_paths [ + "/store/planetdump", + "/store/planet/pbf", + "/store/planet/planet", + "/var/log/exim4", + "/var/spool/exim4" + ] end -cron_d "planet-dump-mirror" do - minute "*/10" +systemd_service "planet-dump-mirror" do + description "Update planet dump mirrors" + exec_start "/usr/local/bin/planet-mirror-redirect-update" user "www-data" - command "/usr/local/bin/planet-mirror-redirect-update" - mailto "horntail-www-data-cron@firefishy.com" + sandbox :enable_network => true + memory_deny_write_execute false + read_write_paths "/store/planet/.htaccess" +end + +systemd_timer "planet-dump-mirror" do + description "Update planet dump mirrors" + on_boot_sec "10min" + on_unit_inactive_sec "10min" +end + +service "planet-dump-mirror.timer" do + action [:enable, :start] end