summaryrefslogtreecommitdiff
path: root/etc/monthly
blob: 0672938b35112a100917de2b8a987a18398fa172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh -
#
#	$NetBSD: monthly,v 1.12 2010/12/27 03:38:52 christos Exp $
#	from: @(#)monthly	8.1 (Berkeley) 6/9/93
#

export PATH=/bin:/usr/bin:/sbin:/usr/sbin
umask 077

if [ -s /etc/monthly.conf ]; then
	. /etc/monthly.conf
fi

host="$(hostname)"
date="$(date)"
rcvar_manpage='monthly.conf(5)'

echo "To: ${MAILTO:-root}"
echo "Subject: $host monthly output for $date"
echo ""

MONTHLYDIR=$(mktemp -d -t _monthly) || exit 1

trap "/bin/rm -rf $MONTHLYDIR ; exit 0" EXIT INT QUIT PIPE

if ! cd "$MONTHLYDIR"; then
	echo "Can not cd to $MONTHLYDIR".
	exit 1
fi

TMP=monthly.$$

# echo ""
# echo "Doing login accounting:"
# ac -p | sort -nr +1

if [ -f /etc/monthly.local ]; then
	. /etc/monthly.local > $TMP 2>&1
	if [ -s $TMP ] ; then
		printf "\nRunning /etc/monthly.local:\n"
		cat $TMP
	fi
	rm -f $TMP
fi