diff options
author | wollman <wollman@FreeBSD.org> | 1999-01-28 20:03:31 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1999-01-28 20:03:31 +0000 |
commit | 86eed8a334dbab8b6db1e28171f8c24a5ee6e1b1 (patch) | |
tree | 6e7acdf86932504ed459e4f675131c018e8c9378 /etc/periodic | |
parent | 01f6cd279e5bbef327659211599b6bd95d5542c9 (diff) | |
download | FreeBSD-src-86eed8a334dbab8b6db1e28171f8c24a5ee6e1b1.zip FreeBSD-src-86eed8a334dbab8b6db1e28171f8c24a5ee6e1b1.tar.gz |
Now that newsyslog is capable of doing this at a specific time,
let it rotate /var/log/wtmp again, and update monthly/200.accounting to
take this into account. (Some sites might want to change the parameters
of the rotation; it's easier to do this when it's all centralized in
newsyslog.conf.)
Diffstat (limited to 'etc/periodic')
-rwxr-xr-x | etc/periodic/monthly/200.accounting | 15 |
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 |