24 lines
1.1 KiB
Diff
24 lines
1.1 KiB
Diff
From 0848cea632ef7b153bf74fabf6797a37897fc90d Mon Sep 17 00:00:00 2001
|
|
From: Karel Klic <kklic@redhat.com>
|
|
Date: Mon, 12 Apr 2010 17:06:42 +0200
|
|
Subject: [PATCH 1/2] Update for named script to ignore broken trust chain messages (rhbz#581186)
|
|
|
|
---
|
|
scripts/services/named | 5 +++--
|
|
1 files changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/scripts/services/named b/scripts/services/named
|
|
index 9097a73..811a4b9 100755
|
|
--- a/scripts/services/named
|
|
+++ b/scripts/services/named
|
|
@@ -226,7 +226,8 @@ while (defined($ThisLine = <STDIN>)) {
|
|
($ThisLine =~ /^no valid KEY resolving '.*': .*/) or
|
|
($ThisLine =~ /^no valid RRSIG resolving '.*': .*/) or
|
|
($ThisLine =~ /^not insecure resolving '.*': .*/) or
|
|
- ($ThisLine =~ /^validating \@0x[[:xdigit:]]+: .* DS: must be secure failure/)
|
|
+ ($ThisLine =~ /^validating \@0x[[:xdigit:]]+: .* DS: must be secure failure/) or
|
|
+ ($ThisLine =~ /^broken trust chain resolving '.*': .*/)
|
|
# too many timeouts resolving 'ns-ext.nrt1.isc.org/AAAA' (in '.'?): disabling EDNS: 3 Time(s)
|
|
) {
|
|
# Don't care about these...
|