summaryrefslogtreecommitdiffstats
path: root/etc/daily
diff options
context:
space:
mode:
Diffstat (limited to 'etc/daily')
-rw-r--r--etc/daily19
1 files changed, 12 insertions, 7 deletions
diff --git a/etc/daily b/etc/daily
index 7b8258c..b306825 100644
--- a/etc/daily
+++ b/etc/daily
@@ -56,13 +56,18 @@ if [ -f /etc/news.expire ]; then
/etc/news.expire
fi
-#echo ""
-#echo "Purging accounting records:"
-#mv /var/account/acct.2 /var/account/acct.3
-#mv /var/account/acct.1 /var/account/acct.2
-#mv /var/account/acct.0 /var/account/acct.1
-#cp /var/account/acct /var/account/acct.0
-#sa -s > /dev/null
+if [ -d /var/account ] ; then
+ echo ""
+ echo "Purging accounting records:"
+ 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
+ if [ -f acct ] ; then
+ cp -pf acct acct.0
+ sa -s > /dev/null
+ fi
+fi
echo ""
echo "Backup passwd and group files:"
OpenPOWER on IntegriCloud