1993-03-21 12:45:37 +03:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
2000-01-10 20:03:49 +03:00
|
|
|
# $NetBSD: monthly,v 1.8 2000/01/10 17:03:49 ad Exp $
|
1997-02-15 13:02:07 +03:00
|
|
|
# from: @(#)monthly 8.1 (Berkeley) 6/9/93
|
1993-03-21 12:45:37 +03:00
|
|
|
#
|
|
|
|
|
1998-09-15 09:06:30 +04:00
|
|
|
export PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
1997-01-05 14:21:09 +03:00
|
|
|
umask 077
|
|
|
|
|
|
|
|
if [ -s /etc/monthly.conf ]; then
|
|
|
|
. /etc/monthly.conf
|
|
|
|
fi
|
|
|
|
|
1998-09-15 09:06:30 +04:00
|
|
|
host=`hostname`
|
|
|
|
date=`date`
|
|
|
|
|
|
|
|
echo "To: ${MAILTO:-root}"
|
|
|
|
echo "Subject: $host monthly output for $date"
|
|
|
|
echo ""
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
# echo ""
|
|
|
|
# echo "Doing login accounting:"
|
|
|
|
# ac -p | sort -nr +1
|
|
|
|
|
2000-01-10 20:03:49 +03:00
|
|
|
if [ -f /etc/monthly.local ]; then
|
|
|
|
echo ""
|
|
|
|
echo "Running /etc/monthly.local:"
|
|
|
|
. /etc/monthly.local
|
|
|
|
fi
|