#!/bin/sh
# Rotate the xtel logfile weekly.

cd /var/log

if [ -f /var/log/xtel.log ]; then
	savelog -c 2 xtel.log >/dev/null
fi

