Quote:
I guess maybe we should license our TonyBot FAQ Builder to them...

-jk


Here is my entry. It is taken straight from that post Loren linked to, but is easier to follow. It is to enable crond and set it up to make the daily fakecall and clear the logs at midnight each night. I'm thinking that the 4.x install already did the fakecall thing because my Tivo has been running several weeks with no nags... but, just to be safe:

Code:
mount -o remount,rw /

echo "root:x:0:0:root:/:/bin/sh" >> /etc/passwd
echo "root:x:0:" >> /etc/group

mkdir -p /var/spool/cron/crontabs
touch /var/spool/cron/crontabs/root

echo "0 0 * * * fakecall.tcl" >> /var/spool/cron/crontabs/root
echo "0 0 * * * wipelogs" >> /var/spool/cron/crontabs/root

echo "/busybox/crond" >> /etc/rc.d/rc.sysinit.author

mount -o remount,ro /

_________________________
Brad B.