Logrotate daily, keeping 90 days of old logs

Also remove the 'delaycompress' option which is not needed because we
use 'copytruncate'.
This commit is contained in:
Jacob Vosmaer 2014-03-12 14:04:24 +01:00
parent ae4ae2b225
commit c22646d2a4
1 changed files with 4 additions and 6 deletions

View File

@ -2,21 +2,19 @@
# based on: http://stackoverflow.com/a/4883967 # based on: http://stackoverflow.com/a/4883967
/home/git/gitlab/log/*.log { /home/git/gitlab/log/*.log {
weekly daily
missingok missingok
rotate 52 rotate 90
compress compress
delaycompress
notifempty notifempty
copytruncate copytruncate
} }
/home/git/gitlab-shell/gitlab-shell.log { /home/git/gitlab-shell/gitlab-shell.log {
weekly daily
missingok missingok
rotate 52 rotate 90
compress compress
delaycompress
notifempty notifempty
copytruncate copytruncate
} }