summaryrefslogtreecommitdiffstats
path: root/etc/periodic
diff options
context:
space:
mode:
Diffstat (limited to 'etc/periodic')
-rwxr-xr-xetc/periodic/monthly/200.accounting15
1 files changed, 3 insertions, 12 deletions
diff --git a/etc/periodic/monthly/200.accounting b/etc/periodic/monthly/200.accounting
index 6361f1d..8cd532f 100755
--- a/etc/periodic/monthly/200.accounting
+++ b/etc/periodic/monthly/200.accounting
@@ -1,23 +1,14 @@
#!/bin/sh -
#
-# $Id: 200.accounting,v 1.1.1.1 1997/08/16 17:04:01 pst Exp $
+# $Id: 200.accounting,v 1.2 1998/02/09 11:36:43 danny Exp $
#
W=/var/log/wtmp
-if [ -f $W ] ; then
- # Work out last month's name
- M=`date -v-1m +%h`
-
- mv -f $W $W.$M
- touch $W
-
+if [ -f ${W}.0 ] ; then
if [ -x /usr/sbin/ac ] ; then
echo ""
echo "Doing login accounting:"
- ac -p -w $W.$M | sort -nr +1
+ ac -p -w ${W}.0 | sort -nr +1
fi
-
- rm -f $W.$M.gz
- gzip $W.$M
fi
OpenPOWER on IntegriCloud