diff options
author | Erich Eckner <git@eckner.net> | 2020-04-07 09:56:50 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-04-07 09:56:50 +0200 |
commit | 74a7198b91f43093d6149112534ae814c0a6e4f8 (patch) | |
tree | e6802c15d4f02390cd040533427b17c1bf4c0dec | |
parent | fb1f67eb24c1404b0788ef4cb374e784b75efa67 (diff) | |
download | logwatch-overrides-74a7198b91f43093d6149112534ae814c0a6e4f8.tar.xz |
secure: ignore "systemd: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[root] ruser=[<unknown>] rhost=[<unknown>]"
-rw-r--r-- | secure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -59,6 +59,7 @@ while (defined($ThisLine = <STDIN>)) { ( $ThisLine =~ /pam_rhosts_auth\[\d+\]: allowed to [^ ]+ as \w+/) or ( $ThisLine =~ /pam_rhosts_auth\([^\)]+\): allowed to [^ ]+ as \w+/) or ( $ThisLine =~ /^(.*)\(pam_unix\)/) or + ( $ThisLine =~ /pam_warn\(.*:.*\)/) or ( $ThisLine =~ /pam_unix\(.*:.*\)/) or ( $ThisLine =~ /pam_sss\(.*:.*\)/) or ( $ThisLine =~ m/^[^ ]+\[\d+\]: connect from localhost$/ ) or |