summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-10-10 08:35:26 +0200
committerErich Eckner <git@eckner.net>2019-10-10 08:35:26 +0200
commit4de440ff25470c93433516557a2b99183ed76f03 (patch)
tree727c3011e45272eed080ead0d0cf57e3a35d6bd0
parent40b0437c8bbb158ce2198eb0fdebf5e68c1c43fe (diff)
downloadlogwatch-overrides-4de440ff25470c93433516557a2b99183ed76f03.tar.xz
xntpd: ignore more lines appearing on backup
-rw-r--r--xntpd7
1 files changed, 7 insertions, 0 deletions
diff --git a/xntpd b/xntpd
index dcd665a..d68b6d8 100644
--- a/xntpd
+++ b/xntpd
@@ -64,6 +64,10 @@ while (defined(my $ThisLine = <STDIN>)) {
}
chomp($ThisLine);
if (
+ ($ThisLine =~ /ntp engine (ready|exiting)/) or
+ ($ThisLine =~ /no reply received in time, skipping initial time setting/) or
+ ($ThisLine =~ /constraint configured without libtls support/) or
+ ($ThisLine =~ /Terminating/) or
($ThisLine =~ m/tickadj = /) or # startup
($ThisLine =~ m/precision = /) or # startup
($ThisLine =~ m/ (succeeded|failed)/) or # startup
@@ -71,6 +75,9 @@ while (defined(my $ThisLine = <STDIN>)) {
($ThisLine =~ m/kernel time (discipline|sync) status/) or # startup
($ThisLine =~ m/kernel time sync (dis|en)abled /) or # startup
($ThisLine =~ m/frequency initialized/) or # startup
+ ($ThisLine =~ /adjusting clock frequency by -?[0-9.]+ to [0-9.]+ppm/) or
+ ($ThisLine =~ /peer [0-9.a-f:]\+ now valid/) or
+ ($ThisLine =~ /clock is now synced/) or
($ThisLine =~ m/using kernel phase-lock loop/) or # startup
($ThisLine =~ m/0\.0\.0\.0 [[:xdigit:]]{4} [[:xdigit:]]{2} /) or # startup
($ThisLine =~ m/select([^\)]) error: Interrupted system call/) or