#! /bin/sh
#
# radiusd	Cron script to rotate radwtmp file monthly.
#

prefix=/usr
localstatedir=/var
logdir=/var/log/freeradius

umask 022
cd $logdir

# Take care of the standard logfiles.
cd $logdir
if [ -f radwtmp ]
then
	savelog -g adm -m 644 -c 6 radwtmp > /dev/null
fi

