0ef3538e30
PR: 19483 Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
39 lines
841 B
Bash
Executable File
39 lines
841 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# 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
|
|
fi
|
|
|
|
case "$daily_accounting_enable" in
|
|
[Yy][Ee][Ss])
|
|
if [ -f /var/account/acct ]
|
|
then
|
|
echo ""
|
|
echo "Rotating accounting logs and gathering statistics:"
|
|
|
|
cd /var/account
|
|
|
|
rm -f acct.3.gz acct.3
|
|
[ -f acct.2.gz ] && mv -f acct.2.gz acct.3.gz
|
|
[ -f acct.2 ] && mv -f acct.2 acct.3
|
|
[ -f acct.1.gz ] && mv -f acct.1.gz acct.2.gz
|
|
[ -f acct.1 ] && mv -f acct.1 acct.2
|
|
[ -f acct.0.gz ] && mv -f acct.0.gz acct.1.gz
|
|
[ -f acct.0 ] && mv -f acct.0 acct.1
|
|
cp -pf acct acct.0
|
|
sa -s >/dev/null
|
|
|
|
case "$daily_accounting_compress" in
|
|
[Yy][Ee][Ss])
|
|
gzip -f acct.0;;
|
|
esac
|
|
fi;;
|
|
esac
|