diff options
author | Erich Eckner <git@eckner.net> | 2020-02-24 06:23:56 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-02-24 06:23:56 +0100 |
commit | ac9a8945284f9fd4e6a721c3010eedef01fd43fc (patch) | |
tree | 04d7f5512b208fbbd9cd1920601508a989db4567 | |
parent | 95cd1e213fe76b17f56f8808968d6b6c4b9c5908 (diff) | |
download | logwatch-overrides-ac9a8945284f9fd4e6a721c3010eedef01fd43fc.tar.xz |
named: fix regex, undo 95cd1e213fe76b17f56f8808968d6b6c4b9c5908
-rw-r--r-- | named | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -80,8 +80,8 @@ while (defined($ThisLine = <STDIN>)) { ($ThisLine =~ /recvfrom: No route to host/) or # 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+: (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 =~ /^(client \S+ [0-9a-f:.]+#\d+ \(\S+\): (view \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|end of file)|resetting|giving up: timed out)/) or ($ThisLine =~ /using \d+ CPU/) or ($ThisLine =~ /loading configuration/) or ($ThisLine =~ /command channel listening/) or |