f3e285ba7d
The only change in the default functionality should be that the output reports are slightly more verbose WRT files deleted. Not objected to by: freebsd-arch
29 lines
567 B
Bash
Executable File
29 lines
567 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
|
|
[ -f acct.2 ] && mv -f acct.2 acct.3
|
|
[ -f acct.1 ] && mv -f acct.1 acct.2
|
|
[ -f acct.0 ] && mv -f acct.0 acct.1
|
|
cp -pf acct acct.0
|
|
sa -s >/dev/null
|
|
fi;;
|
|
esac
|