Release 6
[unix-history] / usr / src / etc / weekly
CommitLineData
952b5ded
KB
1#!/bin/sh -
2#
1ef05b42 3# @(#)weekly 5.18 (Berkeley) %G%
952b5ded 4#
f5a01a00 5
edb1fd5f 6PATH=/bin:/sbin:/usr/sbin:/usr/bin:/usr/libexec
f5a01a00
KB
7export PATH
8
32e3fbdd 9host=`hostname`
952b5ded
KB
10echo "Subject: $host weekly run output"
11
12#echo ""
13#echo "Removing old .o files:"
b223d76b 14#find /usr/src -name '*.o' -atime +21 -print -a -exec rm -f {} \;
952b5ded 15
052ef94c
MK
16# see if /usr/src exists and is local
17# before looking there for checked-out files
18
19if [ -d /usr/src -a \
3b0ae680 20 X"`find -f /usr/src ! -fstype local -prune -or -type d -print -prune`" != X ];
052ef94c
MK
21then
22 echo "looking for checked out files:"
23 TDIR=/tmp/_checkout$$
24
25 mkdir $TDIR
7146beda 26 for file in `find -f /usr/src ! -fstype local -prune -or \
b223d76b 27 -name 'p.*' -print | egrep 'SCCS/p\.'`; do
052ef94c
MK
28 owner=`awk '{ print $3 }' $file`
29 echo "$owner $file"
30 echo $file >> $TDIR/$owner
30c9bcef 31 done | sed -e 's,SCCS/p.,,' | sort
052ef94c
MK
32 for file in $TDIR/*; do
33 sed -e 's,SCCS/p.,,' $file | \
34 Mail -s 'checked out files' `basename $file`
35 done
36 rm -rf $TDIR
37fi
f5a01a00 38
952b5ded
KB
39if [ -f /usr/lib/uucp/clean.weekly ]; then
40 echo ""
41 echo "Cleaning up UUCP:"
42 echo /usr/lib/uucp/clean.weekly | su daemon
43fi
952b5ded 44echo ""
052ef94c 45
d2613fec
KB
46echo ""
47echo -n "Rotating log files:"
f5a01a00 48cd /var/log
d2613fec
KB
49for i in amd messages; do
50 echo -n " $i"
51 if [ -f $i.5 ]; then mv -f $i.5 $i.6; fi
52 if [ -f $i.4 ]; then mv -f $i.4 $i.5; fi
53 if [ -f $i.3 ]; then mv -f $i.3 $i.4; fi
54 if [ -f $i.2 ]; then mv -f $i.2 $i.3; fi
55 if [ -f $i.1 ]; then mv -f $i.1 $i.2; fi
56 if [ -f $i.0 ]; then mv -f $i.0 $i.1; fi
57 if [ -f $i ]; then mv -f $i $i.0; fi
58 >$i
59done
60echo ""
61
28ffe2cf 62kill -1 `cat /var/run/syslog.pid`
952b5ded
KB
63cd /
64
f5a01a00 65echo ""
edb1fd5f 66echo "Rebuilding locate database:"
db944fce 67echo /usr/libexec/locate.updatedb | nice -5 su -m nobody 2>/dev/null