]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nominatim/templates/default/logrotate.nominatim.erb
nominatim: reload frontend after logrotate
[chef.git] / cookbooks / nominatim / templates / default / logrotate.nominatim.erb
index a14042e4766f78b9b6ccfe00535edc5fdd9cd68e..5c50082e46f291368de9b8819c43e0b0de356aa3 100644 (file)
@@ -1,21 +1,25 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
-/var/log/nominatim/update.log {
+<%= node[:nominatim][:logdir] %>/update.log {
   weekly
   missingok
-  rotate 12
+  rotate 30
   compress
   delaycompress
   notifempty
   create 640 nominatim adm
 }
 
-/var/log/nominatim/query.log {
+<%= node[:nominatim][:logdir] %>/query.log {
   weekly
   missingok
-  rotate 52
+  rotate 8
   compress
   delaycompress
   notifempty
+<% if node[:nominatim][:api_flavour] == "python" %>
+  postrotate
+        systemctl reload nominatim.service
+<% end -%>
   create 640 www-data adm
 }