From c9f9ba946428aeefa98442e667cc45a954ea8c16 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Sun, 28 Jun 2015 22:08:52 +0200 Subject: [PATCH] nominatim: reduce postgres archive time even more --- cookbooks/nominatim/templates/default/clean-db-nominatim.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/nominatim/templates/default/clean-db-nominatim.erb b/cookbooks/nominatim/templates/default/clean-db-nominatim.erb index 55c2314be..a15ef1e31 100644 --- a/cookbooks/nominatim/templates/default/clean-db-nominatim.erb +++ b/cookbooks/nominatim/templates/default/clean-db-nominatim.erb @@ -15,6 +15,6 @@ done <% if node[:postgresql][:settings][:defaults][:archive_mode] == "on" -%> # Cleanup archive directory -find -L /data/postgresql-archive -mtime +1 -print0 | xargs -0r rm +find -L /data/postgresql-archive -mmin +1440 -print0 | xargs -0r rm <% end -%> -- 2.43.2