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