blob: 10206c2ab564ebcd6648b17c28cbc428fb7507f9 (
plain)
- #!/bin/sh
- #
- # Debian pflogsumm weekly cron script
- #
- # This script analyses the logfile for statistics and problems.
- #
- if [ -x /usr/sbin/pflogsumm ]; then
- for i in $(seq 8 -1 2); do zcat /var/log/mail.log.$i.gz; done | /usr/sbin/pflogsumm --problems_first
- fi
|