Better still, try something like this (run it from cron every night/week, as necessary, & keep the number of generations appropriate to your site) :-
#!/bin/sh
# Rotate log files
cd /var/adm
for F in utmp utmpx wtmp wtmpx
do
if [ -f ${F}-5 ]; then rm -f ${F}-5
if [ -f ${F}-4 ]; then mv -f ${F}-4 ${F}-5
if [ -f ${F}-3 ]; then mv -f ${F}-3 ${F}-4
if [ -f ${F}-2 ]; then mv -f ${F}-2 ${F}-3
if [ -f ${F}-1 ]; then mv -f ${F}-1 ${F}-2
if [ -f ${F} ]; then mv -f ${F} ${F}-1
touch $F
done
============================================
This allows you to go back in time if there's any reason to investigate "strange goings on" ;-) Ayjaycee - the "A" in TandA
One by one, the penguins steal my sanity.