freebsd-skq/etc/periodic/daily/310.accounting
pst 1d67bc6abb Copy /etc/cron.d to /etc/periodic per-request of many.
This wasn't done with a repository copy because there was no
history of any consequence.  Flames to me.
1997-08-16 17:04:02 +00:00

16 lines
413 B
Bash
Executable File

#!/bin/sh
#
# $Id: 310.accounting,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
#
if [ -f /var/account/acct ] ; then
echo ""
echo "Rotating accounting logs and gathering statistics:"
cd /var/account
if [ -f acct.2 ] ; then mv -f acct.2 acct.3 ; fi
if [ -f acct.1 ] ; then mv -f acct.1 acct.2 ; fi
if [ -f acct.0 ] ; then mv -f acct.0 acct.1 ; fi
cp -pf acct acct.0
sa -s > /dev/null
fi