#! /bin/sh
#
#	$Id: diald.weekly,v 1.1 1996/10/27 15:00:11 gv Exp $	
#
# cron script to rotate diald log file.
#
# Written by Giuseppe Vacanti <Giuseppe.Vacanti@deselby.xs4all.nl>
#
# A more complex version of this file, together with a monthly version, can be
# found in the examples directory.
#
LOG=/var/log/diald.log
if [ -e $LOG ]; then
   savelog -g adm -m 644 -u root -c 7 $LOG > /dev/null
fi
