do not treat "RAS: Correctable Errors collector initialized" message as an error
This commit is contained in:
parent
e84323af8a
commit
9c58dc3dd0
@ -1,7 +1,7 @@
|
||||
Summary: A log file analysis program
|
||||
Name: logwatch
|
||||
Version: 7.4.3
|
||||
Release: 16%{?dist}
|
||||
Release: 17%{?dist}
|
||||
License: MIT
|
||||
Group: Applications/System
|
||||
URL: http://www.logwatch.org/
|
||||
@ -29,6 +29,7 @@ Patch10: logwatch-failed-login.patch
|
||||
Patch11: systemd-noise-filter.patch
|
||||
Patch12: auditd-startup-messages.patch
|
||||
Patch13: ignore-server-ready.patch
|
||||
Patch14: ras-correctable-errors.patch
|
||||
|
||||
BuildRequires: perl-generators
|
||||
Requires: grep mailx
|
||||
@ -60,6 +61,7 @@ of the package on many systems.
|
||||
%patch11 -p1
|
||||
%patch12 -p1
|
||||
%patch13 -p1
|
||||
%patch14 -p1
|
||||
rm -f scripts/services/*.orig
|
||||
|
||||
%build
|
||||
@ -159,6 +161,10 @@ echo "# Configuration overrides for specific logfiles/services may be placed her
|
||||
%{_mandir}/man*/*
|
||||
|
||||
%changelog
|
||||
* Tue Jun 27 2023 Pavel Šimovec <psimovec@redhat.com> - 7.4.3-17
|
||||
- do not treat "RAS: Correctable Errors collector initialized" message as an error
|
||||
- Resolves: rhbz#2043946
|
||||
|
||||
* Tue Jun 27 2023 Pavel Šimovec <psimovec@redhat.com> - 7.4.3-16
|
||||
- ignore normal "Server ready" startup message from fail2ban
|
||||
- Resolves: rhbz#2043944
|
||||
|
||||
11
ras-correctable-errors.patch
Normal file
11
ras-correctable-errors.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- a/scripts/services/kernel
|
||||
+++ b/scripts/services/kernel
|
||||
@@ -135,6 +135,7 @@
|
||||
$SkipError = 1 if $ThisLine =~ /ERST: Error Record Serialization Table \(ERST\) support is initialized/;
|
||||
$SkipError = 1 if $ThisLine =~ /GHES: Generic hardware error source: \d+ notified via .* is not supported/;
|
||||
$SkipError = 1 if $ThisLine =~ /PCIe errors handled by (?:BIOS|OS)/;
|
||||
+ $SkipError = 1 if $ThisLine =~ /RAS: Correctable Errors collector initialized\.$/;
|
||||
# These happen when kerberos tickets expire, which can be normal
|
||||
$SkipError = 1 if $ThisLine =~ /Error: state manager encountered RPCSEC_GSS session expired against NFSv4 server/ && $Ignore_rpcsec_expired;
|
||||
# filter out mount options
|
||||
|
||||
Loading…
Reference in New Issue
Block a user