[Piuparts-commits] [SCM] piatti.debian.org configuration files branch, develop, updated. 0.43-15-g9510d05

Andreas Beckmann debian at abeckmann.de
Tue Jan 31 07:59:35 UTC 2012


The following commit has been merged in the develop branch:
commit 05850a579e1b336ef4c10a9a3cc1bb212a4098d6
Author: Andreas Beckmann <debian at abeckmann.de>
Date:   Sat Jan 28 23:30:59 2012 +0100

    update "command not found" pattern
    
    bash: '...: command not found'
    dash: '...: not found'
    only match at end of line to reduce false positives (Closes: #612408)
    
    Signed-off-by: Andreas Beckmann <debian at abeckmann.de>

diff --git a/home/piupartsm/bin/known_problems/command_not_found_error.conf b/home/piupartsm/bin/known_problems/command_not_found_error.conf
index 55fcb9a..00e2f52 100644
--- a/home/piupartsm/bin/known_problems/command_not_found_error.conf
+++ b/home/piupartsm/bin/known_problems/command_not_found_error.conf
@@ -1,7 +1,7 @@
 #
 # detect packages with miss a depends or use non-essential in purge
 #
-COMMAND='grep "command not found"'
+COMMAND='grep -E "command not found\$|: not found\$"'
 WHERE='fail bugged'
 ISSUE=0
 HEADER='Packages with failed logs with the string "command not found"'
diff --git a/home/piupartsm/bin/known_problems/command_not_found_issue.conf b/home/piupartsm/bin/known_problems/command_not_found_issue.conf
index a9ee3c4..54edf79 100644
--- a/home/piupartsm/bin/known_problems/command_not_found_issue.conf
+++ b/home/piupartsm/bin/known_problems/command_not_found_issue.conf
@@ -1,7 +1,7 @@
 #
 # detect packages which passed the piuparts test but have the string "command not found" in their logs
 #
-COMMAND='grep "command not found"'
+COMMAND='grep -E "command not found\$|: not found\$"'
 WHERE='pass'
 ISSUE=1
 HEADER='Packages which passed the piuparts test but have logs with the string "command not found"'

-- 
piatti.debian.org configuration files



More information about the Piuparts-commits mailing list