]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nominatim/templates/default/logrotate.nominatim.erb
nominatim: fix rights for restricted IP log
[chef.git] / cookbooks / nominatim / templates / default / logrotate.nominatim.erb
index a8952fe8fb616633374bc7844f3bd5456117d34f..b5e9d2ac3f7ff9950a0f3f5b477c890a2d77eea1 100644 (file)
@@ -1,24 +1,31 @@
 # 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 5
   compress
   delaycompress
   notifempty
   create 640 nominatim adm
 }
-<% if node[:lsb][:release].to_f < 14.04 -%>
 
-/var/log/php5-fpm.log {
+<%= node[:nominatim][:logdir] %>/query.log {
   weekly
   missingok
-  rotate 3
+  rotate 8
   compress
   delaycompress
-  postrotate
-    /usr/bin/service php5-fpm restart > /dev/null
-  endscript
+  notifempty
+  create 640 www-data adm
+}
+
+<%= node[:nominatim][:logdir] %>/restricted_ips.log {
+  weekly
+  missingok
+  rotate 5
+  compress
+  delaycompress
+  notifempty
+  create 660 nominatim adm
 }
-<% end -%>