# $Copyright:	$
# Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989, 1990 
# Sequent Computer Systems, Inc.   All rights reserved.
#  
# This software is furnished under a license and may be used
# only in accordance with the terms of that license and with the
# inclusion of the above copyright notice.   This software may not
# be provided or otherwise made available to, or used by, any
# other person.  No title to or ownership of the software is
# hereby transferred.
#ident	"$Header: lp 1.2 89/10/10 $"
#
# This entry will age the request log, removing logs older
# than two days (-c2). Change the number 2 after the -c option to
# another integer to change the duration that old logs will
# be kept. Note that the ; before the > is intended.
13 3 * * * cd /usr/spool/lp/logs; if [ -f requests ]; then /bin/mv requests xyzzy; /bin/cp xyzzy requests; >xyzzy; /usr/lbin/agefile -c2 requests; /bin/mv xyzzy requests; fi
#
# This entry ages the print service log, removing logs older
# than four weeks (-c4). Change the number 4 after the -c option to
# another integer to change the number of weeks to keep old logs.
15 3 * * 0 /usr/lbin/agefile -c4 /usr/spool/lp/logs/lpsched
