diff options
Diffstat (limited to 'network/fail2ban/fail2ban.logrotate')
-rw-r--r-- | network/fail2ban/fail2ban.logrotate | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/network/fail2ban/fail2ban.logrotate b/network/fail2ban/fail2ban.logrotate index 2c973a26de716..8af60998873d6 100644 --- a/network/fail2ban/fail2ban.logrotate +++ b/network/fail2ban/fail2ban.logrotate @@ -1,10 +1,11 @@ +# 5/23/2013 - updated logrotate script based on suggestion by Sebastian Arcus +# and official github documentation. /var/log/fail2ban.log { weekly - rotate 4 + rotate 7 missingok nocompress postrotate - /etc/rc.d/rc.fail2ban reload 1> /dev/null || true + /usr/bin/fail2ban-client set logtarget /var/log/fail2ban.log 1>/dev/null || true endscript } - |