diff options
| author | Brian Somers <brian@FreeBSD.org> | 2002-04-30 17:07:32 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 2002-04-30 17:07:32 +0000 |
| commit | ee9336d9b734e3d04aa4ea2c7c8e0a21692bc1ce (patch) | |
| tree | e30254aad9f1ea7a94124257cbaa5bd06e6ec980 /etc | |
| parent | d4f567ee5731c2a6bdce2bbb3e279a1d90f8e6ce (diff) | |
Notes
Diffstat (limited to 'etc')
| -rwxr-xr-x | etc/periodic/daily/460.status-mail-rejects | 3 | ||||
| -rwxr-xr-x | etc/periodic/monthly/200.accounting | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/etc/periodic/daily/460.status-mail-rejects b/etc/periodic/daily/460.status-mail-rejects index 5a92130fb091..1c7f071f4fbd 100755 --- a/etc/periodic/daily/460.status-mail-rejects +++ b/etc/periodic/daily/460.status-mail-rejects @@ -43,6 +43,9 @@ case "$daily_status_mail_rejects_enable" in elif [ -f /var/log/maillog.$n.gz ] then zcat -fc /var/log/maillog.$n.gz + elif [ -f /var/log/maillog.$n.bz2 ] + then + bzcat -fc /var/log/maillog.$n.bz2 fi n=$(($n - 1)) done diff --git a/etc/periodic/monthly/200.accounting b/etc/periodic/monthly/200.accounting index 402c36dbff85..2142193978f0 100755 --- a/etc/periodic/monthly/200.accounting +++ b/etc/periodic/monthly/200.accounting @@ -22,6 +22,10 @@ case "$monthly_accounting_enable" in then remove=YES zcat $W.0.gz > $W.0 || rc=1 + elif [ -f $W.0.bz2 ] + then + remove=YES + bzcat $W.0.bz2 > $W.0 || rc=1 else echo '$monthly_accounting_enable is set but' \ "$W.0 doesn't exist" |
