:
#	@(#) logcheck.sh 1.4 88/11/11 
#
#
#	      UNIX is a registered trademark of AT&T
#		Portions Copyright 1976-1989 AT&T
#	Portions Copyright 1980-1989 Microsoft Corporation
#    Portions Copyright 1983-1989 The Santa Cruz Operation, Inc
#		      All Rights Reserved

#	Copyright (c) 1984 AT&T
#	  All Rights Reserved

#	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#	The copyright notice above does not evidence any
#	actual or intended publication of such source code.

#	Copyright (c) 1984 AT&T
#	  All Rights Reserved

#	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#	The copyright notice above does not evidence any
#	actual or intended publication of such source code.


# this command is used to determine if the cron log file is approaching the ulimit
# of the system.  If it is, then the log file will be moved to olog
# this command is executed by the crontab entry 'root'

#set umask
umask 022

# log files
LOG=/usr/lib/cron/log
OLOG=/usr/lib/cron/olog

# set the high-water mark of the file
MARKER=4
LIMIT=`ulimit`
LIMIT=`expr $LIMIT - $MARKER`

# find the size of the log file (in blocks)
if [ -f $LOG ]
then
	FILESIZE=`du -a $LOG | cut -f1`
else
	exit
fi

# move log file to olog file if the file is too big
if [ $FILESIZE -ge $LIMIT ]
then
	cp $LOG $OLOG
	>$LOG
	chgrp bin $OLOG
fi

