X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/29bfae30a193957656c8fa97ec437e94e3574823..238a31cadd90bb63a5dbdc7f4406aa51d786cc9d:/cookbooks/planet/recipes/default.rb diff --git a/cookbooks/planet/recipes/default.rb b/cookbooks/planet/recipes/default.rb index ceb9d9ad5..c4ad10ecd 100644 --- a/cookbooks/planet/recipes/default.rb +++ b/cookbooks/planet/recipes/default.rb @@ -20,6 +20,7 @@ include_recipe "accounts" include_recipe "apache" include_recipe "munin" +include_recipe "awscli" package %w[ perl @@ -130,19 +131,29 @@ end munin_plugin "planet_age" -template "/usr/local/bin/old-planet-file-cleanup" do - source "old-planet-file-cleanup.erb" +template "/usr/local/bin/planet-file-cleanup" do + source "planet-file-cleanup.erb" owner "root" group "root" mode "755" end -cron_d "old-planet-file-cleanup" do - comment "run this on the first monday of the month at 3:44am" - minute "44" - hour "3" - day "1-7" +systemd_service "planet-file-cleanup" do + description "Cleanup old planet files" + exec_start "/usr/local/bin/planet-file-cleanup --debug" user "www-data" - command "test $(date +\\%u) -eq 1 && /usr/local/bin/old-planet-file-cleanup --debug" - mailto "zerebubuth@gmail.com" + sandbox true + read_write_paths [ + node[:planet][:dump][:xml_directory], + node[:planet][:dump][:pbf_directory] + ] +end + +systemd_timer "planet-file-cleanup" do + description "Cleanup old planet files" + on_calendar "Mon *-*-1..7 03:44" +end + +service "planet-file-cleanup.timer" do + action [:enable, :start] end