Remove the annoying "cmp: EOF" message when
dmesg changes.
This commit is contained in:
parent
e9e75c4e9a
commit
1d554918e8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27810
@ -1,7 +1,7 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# @(#)security 5.3 (Berkeley) 5/28/91
|
||||
# $Id: security,v 1.19 1997/02/23 21:34:34 mpp Exp $
|
||||
# $Id: security,v 1.20 1997/03/03 07:03:50 mpp Exp $
|
||||
#
|
||||
PATH=/sbin:/bin:/usr/bin
|
||||
LC_ALL=C; export LC_ALL
|
||||
@ -75,7 +75,7 @@ if dmesg 2>/dev/null > $TMP; then
|
||||
echo "no $LOG/dmesg.today"
|
||||
cp $TMP $LOG/dmesg.today
|
||||
fi
|
||||
if cmp $LOG/dmesg.today $TMP >/dev/null; then :; else
|
||||
if cmp $LOG/dmesg.today $TMP >/dev/null 2>&1; then :; else
|
||||
separator
|
||||
echo "$host kernel log messages:"
|
||||
diff -b $LOG/dmesg.today $TMP | egrep "^>"
|
||||
|
Loading…
Reference in New Issue
Block a user