]> gitweb.michael.orlitzky.com - amavis-logwatch.git/commitdiff
Ignore all "sd_notify" lines.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 28 Dec 2018 14:23:52 +0000 (09:23 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 28 Dec 2018 14:56:24 +0000 (09:56 -0500)
Lines beginning with either "sd_notify:" or "sd_notify (no socket):"
contain information about what is being sent to the systemd
notification socket, if one exists. One such line was already being
ignored, but we don't want any of them. So, the existing
@ignore_list_final entry was expanded to encompass all such messages.

amavis-logwatch

index ac93cbcc6a667f3e2fdb609eecd83d4b66e5424a..ffb502bda94271a8763908f7a59f123830d72565 100644 (file)
@@ -2047,7 +2047,10 @@ sub create_ignore_list() {
    push @ignore_list_final, qr/\bRUSAGE\b/;
    push @ignore_list_final, qr/: Sending .* to UNIX socket/;
 
-   push @ignore_list_final, qr/sd_notify \(no socket\): STATUS=Starting child process\(es\), ready for work./
+   # Lines beginning with "sd_notify:" or "sd_notify (no socket):"
+   # describe what is being sent to the systemd notification socket,
+   # if one exists.
+   push @ignore_list_final, qr/^sd_notify( \(no socket\))?:/;
 }
 
 # Notes: