#!/bin/sh

# midentd       Cron script to rotate the midentd log files weekly.
#
#               Written by Turbo Fredriksson <turbo@debian.org>.
#               Based on the log rotater by Hugo Haas <hugo@debian.org>.

LOG=/var/log/midentd/midentd.log

if [ -f $LOG ]; then
  savelog -u identd -g adm -m 640 $LOG >/dev/null
fi
