nut-debian/scripts/logrotate/nutlogd
2012-06-01 15:55:19 +02:00

25 lines
581 B
Plaintext

# Log rotation configuration for NUT:
# Rotate NUT log file(s) either monthly or when exceeding 5 Mb
#
# For more information, refer to logrotate(8) manual page:
# http://linuxcommand.org/man_pages/logrotate8.html
#
# To install this file, use:
# $ cp nutlogd /etc/logrotate.d/
# $ chmod 644 /etc/logrotate.d/nutlogd
# $ chown root.root /etc/logrotate.d/nutlogd
#
# Log files must have "nut-" prefix and ".log" suffix
/var/log/nut-*.log {
missingok
notifempty
size=5M
rotate 12
monthly
postrotate
/usr/bin/killall -HUP upslog
endscript
}