Drew,

As rday said, this is harmless and probably a good thing to
leave set.  If you simply don't want to see cron related
messages in your var/log/messages file, edit
/etc/syslog.conf and change the line that writes to
/var/log/messages to look like:

*.info;mail.none;authpriv.none;cron.none      
/var/log/messages

Notice the addition of ";cron.none" to the line.  Any cron
related messages should still be written to the
/var/log/cron file, unless you change that line too (which I
would not recommend).

After changing the syslog.conf file, do a:

/etc/init.d/syslog restart

to force syslogd to reread its config file.

Cheers,
Ed
  
On Sun, 21 Jan 2001, Leonard den Ottolander wrote:
> >               Hi Drew,
> >
> > > Jan 21 00:40:00 tenchi CROND[2171]: (root) CMD (   /sbin/rmmod -as)
> > > Jan 21 00:50:00 tenchi CROND[2173]: (root) CMD (   /sbin/rmmod -as)
> >
> >  Seems like your unused modules are flushed every 10 minutes. I guess this
> > comes from the crontabs package. Check your crontab as root (crontab -l) and
> > or edit it (crontab -e) if you don't like your modules to be flushed so often.
> 
> precisely.  more precisely, view the file /etc/cron.d/kmod:
> 
>    # rmmod -a is a two-hand sweep module cleaner
>    */10 * * * *    root    /sbin/rmmod -as
> 
> which simply cleans dynamically-loaded modules every 10 minutes.
> harmless.
> 
> rday



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to