diff options
author | Paul Traina <pst@FreeBSD.org> | 1997-08-16 17:04:02 +0000 |
---|---|---|
committer | Paul Traina <pst@FreeBSD.org> | 1997-08-16 17:04:02 +0000 |
commit | 12c88fdf8b9e7c868a12b1d71f47ce83625b969b (patch) | |
tree | da0ab15971981f96bfc6dfa43990e8cbd58f3583 /etc/periodic/monthly/200.accounting | |
parent | 3a6424f6be21a3f53bb10416a0debe13ce433bd9 (diff) | |
download | src-12c88fdf8b9e7c868a12b1d71f47ce83625b969b.tar.gz src-12c88fdf8b9e7c868a12b1d71f47ce83625b969b.zip |
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.
Notes
Notes:
svn path=/cvs2svn/branches/TRAINA/; revision=28263
Diffstat (limited to 'etc/periodic/monthly/200.accounting')
-rwxr-xr-x | etc/periodic/monthly/200.accounting | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/etc/periodic/monthly/200.accounting b/etc/periodic/monthly/200.accounting new file mode 100755 index 000000000000..14ca582e43c6 --- /dev/null +++ b/etc/periodic/monthly/200.accounting @@ -0,0 +1,11 @@ +#!/bin/sh - +# +# $Id: 200.accounting,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $ +# + +if [ -x /usr/sbin/ac ] ; then + echo "" + echo "Doing login accounting:" + + ac -p | sort -nr +1 +fi |