1 #!/bin/sh - 2 # 3 # @(#)weekly 8.2 (Berkeley) 1/2/94 4 # 5 6 PATH=/bin:/sbin:/usr/sbin:/usr/bin:/usr/libexec 7 export PATH 8 9 host=`hostname` 10 echo "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 19 if [ -d /usr/src -a \ 20 X"`find -f /usr/src ! -fstype local -prune -or -type d -print -prune`" != X ]; 21 then 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 39 fi 40 41 if [ -f /usr/lib/uucp/clean.weekly ]; then 42 echo "" 43 echo "Cleaning up UUCP:" 44 echo /usr/lib/uucp/clean.weekly | su daemon 45 fi 46 echo "" 47 48 echo "" 49 echo -n "Rotating log files:" 50 cd /var/log 51 for 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 61 done 62 echo "" 63 64 kill -1 `cat /var/run/syslog.pid` 65 cd / 66 67 echo "" 68 echo "Rebuilding locate database:" 69 echo /usr/libexec/locate.updatedb | nice -5 su -m nobody 2>/dev/null 70