summaryrefslogtreecommitdiffstats
path: root/etc/monthly
blob: 477d0ce917680d28f716de5eeccc1d2c34febbd0 (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
#!/bin/sh -
#
#	@(#)monthly	5.5 (Berkeley) 6/17/91
#

PATH=/bin:/usr/bin:/sbin:/usr/sbin
host=`hostname -s`
echo "Subject: $host monthly run output"

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

echo ""
echo -n "Rotating log files:"
cd /var/log
for i in kerberos.log lpd-errs wtmp; do
	echo -n " $i"
	if [ -f $i.5 ]; then mv -f $i.5 $i.6; fi
	if [ -f $i.4 ]; then mv -f $i.4 $i.5; fi
	if [ -f $i.3 ]; then mv -f $i.3 $i.4; fi
	if [ -f $i.2 ]; then mv -f $i.2 $i.3; fi
	if [ -f $i.1 ]; then mv -f $i.1 $i.2; fi
	if [ -f $i.0 ]; then mv -f $i.0 $i.1; fi
	if [ -f $i ]; then mv -f $i $i.0; fi
	>$i
done
echo ""
OpenPOWER on IntegriCloud