diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-26 13:07:02 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-26 13:07:02 +0100 |
commit | 9c02fed844a9cf62a7094c34fb0ca6d38640a07a (patch) | |
tree | 25d627e2263a7c854e9a78c9c34c34a33d13883a /logparse | |
parent | f03f8eae97d04984eb0d912613807081eaa4e6fc (diff) | |
download | jenkins.debian.net-9c02fed844a9cf62a7094c34fb0ca6d38640a07a.tar.xz |
d-i logparse rules: ignore warnings in configure questions and treat less lines as 'info'
Diffstat (limited to 'logparse')
-rw-r--r-- | logparse/debian-installer.rules | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/logparse/debian-installer.rules b/logparse/debian-installer.rules index 28d506fa..282d9080 100644 --- a/logparse/debian-installer.rules +++ b/logparse/debian-installer.rules @@ -39,10 +39,14 @@ ok /^dpkg-genchanges: warning: the current version .+ is earlier than the previo # match line starting with 'error ', case-insensitive error /(?i)^error / +# suppress warnings in configure questiosn +ok /warning.+\[N\/y\/\?\] n/ +ok /warning.+\[Y\/n\/\?\] y/ + # list of warnings here... warning /[Ww]arning/ warning /WARNING/ # create a quick access link to lines in the report containing 'INFO' -info /INFO/ +info /^INFO.*/ |