save-entropy cronjob Added: not found every 10 minutes

2004-07-19 Thread Duane Winner
Hello,
Does anybody know what is going on with the crobjob 
/usr/libexec/save-entropy that by default is scheduled to run every 10 
minutes?

I'm getting tons of log mail because of this, but I don't want to just 
comment out the cronjob because it is annoying.

It is only happening on one of my FreeBSD 5.2.1 boxes, and the only 
thing I can figure that is causing it (different from other boxes) is 
that it is running the dhcpd server.

Any thoughts?
Thanks,
Duane Winner

[EMAIL PROTECTED] mail
Mail version 8.1 6/6/93.  Type ? for help.
/var/mail/dwinner: 2 messages 2 new
N  1 [EMAIL PROTECTED]  Mon Jul 19 12:11  23/955   Cron 
[EMAIL PROTECTED] /usr/libexec/save-entropy
 N  2 [EMAIL PROTECTED]  Mon Jul 19 12:22  23/955   Cron 
[EMAIL PROTECTED] /usr/libexec/save-entropy

Message 1:
From [EMAIL PROTECTED] Mon Jul 19 12:11:01 2004
Date: Mon, 19 Jul 2004 12:11:01 -0400 (EDT)
From: [EMAIL PROTECTED] (Cron Daemon)
To: [EMAIL PROTECTED]
Subject: Cron [EMAIL PROTECTED] /usr/libexec/save-entropy

Added: not found

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: save-entropy cronjob Added: not found every 10 minutes

2004-07-19 Thread Dan Nelson
In the last episode (Jul 19), Duane Winner said:
 Does anybody know what is going on with the cronjob
 /usr/libexec/save-entropy that by default is scheduled to run every
 10 minutes?
 
 I'm getting tons of log mail because of this, but I don't want to
 just comment out the cronjob because it is annoying.

 Subject: Cron [EMAIL PROTECTED] /usr/libexec/save-entropy
 
 Added: not found

Try changing the top line of that script to read 

  #!/bin/sh -x

, which will log every command that it runs to stderr.  You should then
be able to determine which line is printing that error message.  My
guess is something in your rc.conf is doing it.

-- 
Dan Nelson
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: save-entropy cronjob Added: not found every 10 minutes

2004-07-19 Thread Duane Winner
Thanks! Using your technique, I discovered that I stupidly forgot to put 
a '#' before one of my comments in /etc/rc.conf.


Dan Nelson wrote:
In the last episode (Jul 19), Duane Winner said:
Does anybody know what is going on with the cronjob
/usr/libexec/save-entropy that by default is scheduled to run every
10 minutes?
I'm getting tons of log mail because of this, but I don't want to
just comment out the cronjob because it is annoying.

Subject: Cron [EMAIL PROTECTED] /usr/libexec/save-entropy
Added: not found

Try changing the top line of that script to read 

  #!/bin/sh -x
, which will log every command that it runs to stderr.  You should then
be able to determine which line is printing that error message.  My
guess is something in your rc.conf is doing it.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]