diff options
author | Erich Eckner <git@eckner.net> | 2019-04-04 09:06:31 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-04-04 09:06:31 +0200 |
commit | 86af68d16fc38e6ca9d9fef663cd9d970849225c (patch) | |
tree | 0eafa95c67fb74d0443d76020a8d267aba045798 | |
parent | a695036604fb9dc899ae4bac66881514801a681b (diff) | |
download | logwatch-overrides-86af68d16fc38e6ca9d9fef663cd9d970849225c.tar.xz |
named: silence more stuff
-rw-r--r-- | named | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -81,7 +81,7 @@ while (defined($ThisLine = <STDIN>)) { # Be sure to catch: transfer of 'zone' from IP#53: failed to connect: timed out # not exact just triggers a full transfer ($ThisLine =~ /^(client \S+ [0-9.]+#\d+ \(\S+\): )?transfer of .*: (IXFR|AXFR(|-style IXFR) (started|ended)|connected using|Transfer completed|failed while receiving responses: not exact)/) or - ($ThisLine =~ /^transfer of \S+ from \S+: (Transfer status: (timed out|host unreachable|connection reset|connection refused|success|REFUSED|SERVFAIL|up to date)|resetting|giving up: timed out)/) or + ($ThisLine =~ /^transfer of \S+ from \S+: (Transfer status: (timed out|host unreachable|connection reset|connection refused|success|REFUSED|SERVFAIL|up to date|end of file)|resetting|giving up: timed out)/) or ($ThisLine =~ /using \d+ CPU/) or ($ThisLine =~ /loading configuration/) or ($ThisLine =~ /command channel listening/) or @@ -137,6 +137,7 @@ while (defined($ThisLine = <STDIN>)) { ($ThisLine =~ /using default UDP\/IPv[46] port range: \[[0-9]*, [0-9]*\]/) or ($ThisLine =~ /using [[:digit:]]+ UDP listener per interface/) or ($ThisLine =~ /^flush tree \S+ in cache view \S+: success$/) or + ($ThisLine =~ /^flushing caches in all views succeeded$/) or ($ThisLine =~ /^[^:]+: sending trust-anchor-telemetry query '[^']+'$/) or ($ThisLine =~ /set up managed keys zone/) or ($ThisLine =~ /^managed-keys-zone: Key \d+ for zone \S+ acceptance timer complete: key now trusted$/) or @@ -178,7 +179,7 @@ while (defined($ThisLine = <STDIN>)) { ($ThisLine =~ /dhcpupdate: forwarding update for zone/) or ($ThisLine =~ /forwarded dynamic update: master [^ ]* returned: (NXRRSET|YXDOMAIN)/) or ($ThisLine =~ /using .* as GeoIP directory/) or - ($ThisLine =~ /GEO-.* Build/) or + ($ThisLine =~ /GEO-.* Bu(ild)?/) or ($ThisLine =~ /initializing GeoIP /) or # the following seems okay since it says "success" ($ThisLine =~ /managed-keys-zone .*: No DNSKEY RRSIGs found for '.*': success/) or @@ -202,6 +203,7 @@ while (defined($ThisLine = <STDIN>)) { ($ThisLine =~ /resolver priming query complete/) or ($ThisLine =~ /client .* signer .* approved/) or ($ThisLine =~ /stop limiting/) or + ($ThisLine =~ /^dns64 reverse zone: \S+\.arpa\.$/) or # ignore this line because the following line describes the error ($ThisLine =~ /unexpected error/) ) { @@ -306,7 +308,7 @@ while (defined($ThisLine = <STDIN>)) { $JournalFail{$Zone}++; } elsif ( ($Channel,$Reason) = ($ThisLine =~ /couldn't add command channel (.+#\d+): (.*)$/)) { $ChannelAddFail{$Channel}{$Reason}++; - } elsif ( ($Zone,$Host,$Reason) = ($ThisLine =~ /zone ([^ ]*): refresh: failure trying master ([^ ]*)#\d+: (.*)/) ) { + } elsif ( ($Zone,$Host,$dummy,$Reason) = ($ThisLine =~ /zone ([^ ]*): refresh: failure trying master ([^ ]*)#\d+( \(source \S+\))?: (.*)/) ) { $MasterFailure{"$Zone from $Host"}{$Reason}++; } elsif ( ($Zone,undef,$Host,$Reason) = ($ThisLine =~ /^zone ([^ ]*): (got_transfer_quota|refresh): skipping zone transfer as master ([^ ]*)#\d+ \(source [0-9.:]+#\d+\) is (unreachable \(cached\))$/) ) { $MasterFailure{"$Zone from $Host"}{$Reason}++; |