summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2021-04-07 06:18:36 +0200
committerErich Eckner <git@eckner.net>2021-04-07 06:18:36 +0200
commit6634efa139d60ba152b53c9683fa82e4af8acd36 (patch)
tree55b53800f1f91e1383a048cff01e7b3db9e67974
parent9d8059cb7b97a5bf0a56c2ddcb69fa5d1572e28c (diff)
downloadlogwatch-overrides-6634efa139d60ba152b53c9683fa82e4af8acd36.tar.xz
systemd: some updates
-rw-r--r--systemd10
1 files changed, 9 insertions, 1 deletions
diff --git a/systemd b/systemd
index c45b64b..3fb772e 100644
--- a/systemd
+++ b/systemd
@@ -54,6 +54,7 @@ my %OtherList;
while (defined(my $ThisLine = <STDIN>)) {
chomp($ThisLine);
if ($ThisLine =~ /^(Activat|Deactivat|Mount|Unmount|Reload|Start|Stopp)ing / or
+ $ThisLine =~ /^Finished / or
# These events will be caught with the Unit X entered failed state message
$ThisLine =~ /^Failed to start / or
$ThisLine =~ /: Failed with result / or
@@ -72,13 +73,14 @@ while (defined(my $ThisLine = <STDIN>)) {
# crond will never restart process when it is restarted
$ThisLine =~ /^crond\.service: Found left-over process \d+ \(.*\) in control group while starting unit\. Ignoring\.$/ or
$ThisLine =~ /^Received SIGINT\./ or
- $ThisLine =~ /^Deactivated / or
+ $ThisLine =~ /^(\S+: )?Deactivated / or
$ThisLine =~ /^Detected (architecture|virtualization) / or
$ThisLine =~ /^Found device / or
$ThisLine =~ /Got automount request for \/proc\// or
$ThisLine =~ /^Inserted module / or
$ThisLine =~ /^Listening on / or
$ThisLine =~ /^Mounted / or
+ $ThisLine =~ /^Queued start job for default target / or
$ThisLine =~ /^Relabelled / or
$ThisLine =~ /^Reloading\.$/ or # Happens on each boot at switch root
$ThisLine =~ /^RTC configured in / or
@@ -110,6 +112,7 @@ while (defined(my $ThisLine = <STDIN>)) {
$ThisLine =~ /: Start(-pre)? operation timed out\. Terminating\./ or
$ThisLine =~ /hold-?off time over, scheduling restart\./ or
$ThisLine =~ /Service has no hold-off time.*, scheduling restart\./ or
+ $ThisLine =~ /Service Restart.* expired, scheduling restart\./ or
$ThisLine =~ /Scheduled restart job, restart counter is at .*\./ or
$ThisLine =~ /Stopping timed out\. Killing\./ or
$ThisLine =~ /^Timed out waiting for/ or
@@ -143,6 +146,11 @@ while (defined(my $ThisLine = <STDIN>)) {
$ThisLine =~ /^Removed slice / or
$ThisLine =~ /^pam_unix\(systemd-user:session\): session (?:opened|closed) for user/ or
$ThisLine =~ /Adding .* random time\.$/ or
+ # https://bugzilla.redhat.com/show_bug.cgi?id=1890632
+ $ThisLine =~ /Not generating service for XDG autostart .*,/ or
+ $ThisLine =~ /gnome-systemd-autostart-condition not found/ or
+ $ThisLine =~ /kde-systemd-start-condition not found/ or
+ $ThisLine =~ /Unknown key name .* in section 'Desktop Entry'/ or
# These happen on every shutdown - downgraded to debug message in systemd v235
# https://github.com/systemd/systemd/issues/6777
$ThisLine =~ /^Failed to propagate agent release message: (?:Connection reset by peer|Transport endpoint is not connected)/ or