From afd6866ee43e81cb41535207f8f3af951286c965 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Mon, 13 May 2002 21:36:44 +0000 Subject: MFC: Handle .bz2 files correctly. Approved by: re (bmah) --- etc/periodic/daily/460.status-mail-rejects | 3 +++ etc/periodic/monthly/200.accounting | 4 ++++ 2 files changed, 7 insertions(+) (limited to 'etc/periodic') 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" -- cgit v1.2.3