1997-08-16 17:04:02 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1997-08-16 17:04:02 +00:00
|
|
|
#
|
|
|
|
|
2000-06-23 01:18:31 +00:00
|
|
|
# If there is a global system configuration file, suck it in.
|
|
|
|
#
|
|
|
|
if [ -r /etc/defaults/periodic.conf ]
|
|
|
|
then
|
|
|
|
. /etc/defaults/periodic.conf
|
|
|
|
source_periodic_confs
|
1997-08-16 17:04:02 +00:00
|
|
|
fi
|
2000-06-23 01:18:31 +00:00
|
|
|
|
|
|
|
case "$daily_accounting_enable" in
|
|
|
|
[Yy][Ee][Ss])
|
2000-09-14 17:19:15 +00:00
|
|
|
if [ ! -f /var/account/acct ]
|
2000-06-23 01:18:31 +00:00
|
|
|
then
|
2000-09-14 17:19:15 +00:00
|
|
|
echo '$daily_accounting_enable is set but /var/account/acct' \
|
|
|
|
"doesn't exist"
|
|
|
|
rc=2
|
2001-05-30 20:23:43 +00:00
|
|
|
elif [ -z "$daily_accounting_save" ]
|
|
|
|
then
|
|
|
|
echo '$daily_accounting_enable is set but ' \
|
|
|
|
'$daily_accounting_save is not'
|
|
|
|
rc=2
|
2000-09-14 17:19:15 +00:00
|
|
|
else
|
2000-06-23 01:18:31 +00:00
|
|
|
echo ""
|
|
|
|
echo "Rotating accounting logs and gathering statistics:"
|
|
|
|
|
|
|
|
cd /var/account
|
2000-09-14 17:19:15 +00:00
|
|
|
rc=0
|
2001-05-30 16:46:53 +00:00
|
|
|
|
|
|
|
n=$daily_accounting_save
|
|
|
|
rm -f acct.$n.gz acct.$n || rc=3
|
|
|
|
m=$n
|
|
|
|
n=$(($n - 1))
|
|
|
|
while [ $n -ge 0 ]
|
|
|
|
do
|
|
|
|
[ -f acct.$n.gz ] && { mv -f acct.$n.gz acct.$m.gz || rc=3; }
|
|
|
|
[ -f acct.$n ] && { mv -f acct.$n acct.$m || rc=3; }
|
|
|
|
m=$n
|
|
|
|
n=$(($n - 1))
|
|
|
|
done
|
2000-09-14 17:19:15 +00:00
|
|
|
cp -pf acct acct.0 || rc=3
|
2001-05-30 16:46:53 +00:00
|
|
|
sa -s $daily_accounting_flags || rc=3
|
2000-06-25 08:59:26 +00:00
|
|
|
|
|
|
|
case "$daily_accounting_compress" in
|
|
|
|
[Yy][Ee][Ss])
|
2000-09-14 17:19:15 +00:00
|
|
|
gzip -f acct.0 || rc=3;;
|
2000-06-25 08:59:26 +00:00
|
|
|
esac
|
2000-06-23 01:18:31 +00:00
|
|
|
fi;;
|
2000-09-14 17:19:15 +00:00
|
|
|
|
|
|
|
*) rc=0;;
|
2000-06-23 01:18:31 +00:00
|
|
|
esac
|
2000-09-14 17:19:15 +00:00
|
|
|
|
|
|
|
exit $rc
|