]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/templates/default/logrotate.web.erb
Add a short delay when rotating passenger logs
[chef.git] / cookbooks / web / templates / default / logrotate.web.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <%= node[:web][:log_directory] %>/*.log {
4   daily
5   missingok
6   rotate 7
7   compress
8   delaycompress
9   notifempty
10   create 0660 rails rails
11   sharedscripts
12   postrotate
13 <% if File.directory?("#{node[:web][:base_directory]}/rails") -%>
14     /bin/sleep 30
15     PASSENGER_INSTANCE_REGISTRY_DIR=<%= node[:passenger][:instance_registry_dir] %> /usr/bin/passenger-config restart-app --ignore-app-not-running --name rails > /dev/null
16 <% end -%>
17 <% if File.directory?("#{node[:web][:base_directory]}/gpx-import") -%>
18     /bin/systemctl try-reload-or-restart gpx-import
19 <% end -%>
20 <% if File.directory?("#{node[:web][:base_directory]}/cgimap") -%>
21     /bin/systemctl reload cgimap
22     /usr/bin/rsync --preallocate <%= node[:web][:log_directory] %>/cgimap.log.2.gz ironbelly::logs/www.openstreetmap.org/cgimap-<%= node[:hostname] %>-`date -d "-2 days" +%Y-%m-%d`.gz
23 <% end -%>
24   endscript
25 }