[Secure-testing-commits] r659 - sarge-checks
Joey Hess
joeyh@costa.debian.org
Fri, 25 Mar 2005 20:31:28 +0000
Author: joeyh
Date: 2005-03-25 20:31:27 +0000 (Fri, 25 Mar 2005)
New Revision: 659
Modified:
sarge-checks/checklist
Log:
bleh, retry on any madison failure that's not exit 1
Modified: sarge-checks/checklist
===================================================================
--- sarge-checks/checklist 2005-03-25 19:46:23 UTC (rev 658)
+++ sarge-checks/checklist 2005-03-25 20:31:27 UTC (rev 659)
@@ -67,8 +67,9 @@
my @maddy;
for (1..5) {
@maddy=`madison -s testing '$package'`;
- if ($? & 127) {
- # segfult. good old newraff..
+ if ($? & 127 || ($? >> 8 != 0 && $? >> 8 != 1)) {
+ # good old unrelaible newraff,
+ # home of our archive..
next;
}
last;