Re[2]: security run output

2004-08-14 Thread Chris
*This message was transferred with a trial version of CommuniGate(tm) Pro*

 ... MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE

No -- that's entirely harmless. If you look at /var/run/dmesg.boot,
you see that it's just part of the normal kernel output during boot.
Specifically it's a list of the capabilities of your CPU.

What's happened is that the message buffer has somehow got truncated
at the beginning, and you're seeing just the end of that particular
line.  For some reason, the daily security script thinks it's
significant kernel output, but it isn't really.


Odd, because I haven't booted in awhile. This just showed up out of the blue this one 
time, and has never shown up before.

Thanks for the info, though.
Chris
_
Email harvesters eat this: [EMAIL PROTECTED]


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


Re[2]: security run output

2004-07-27 Thread Chris
*This message was transferred with a trial version of CommuniGate(tm) Pro*

Hmm, I found:

/etc/periodic/security/700.kernelmsg

which seems to be what generates the information I was talking about in the email. So 
I guess you were correct that it's not from /var/log/messages after all.

Having said that, I don't have any idea if there is something in that small script 
that I could change to increase the number of lines it puts into the email. It's a 
bourne shell script, it appears:

if [ -r /etc/defaults/periodic.conf ]
then
. /etc/defaults/periodic.conf
source_periodic_confs
fi

. /etc/periodic/security/security.functions

rc=0

case $daily_status_security_kernelmsg_enable in
[Yy][Ee][Ss])
dmesg 2/dev/null |
check_diff new_only dmesg - ${host} kernel log messages:
rc=$?;;
*)  rc=0;;
esac

exit $rc


And thanks for that script - I'll give it a try.

Chris




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