From e0d507dbbf01e50a4df33d57b5e526aad6189be7 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 18 Dec 2015 13:53:59 +0100 Subject: reproducible archlinux: detect 403 and 500 errors when downloading sources --- bin/reproducible_html_archlinux.sh | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'bin') diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index 59693136..1226581f 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -20,7 +20,7 @@ for i in 0 1 2 3 4 ; do done HTML_FTBR=$(mktemp -t rhtml-archlinux-XXXXXXXX) HTML_DEPWAIT=$(mktemp -t rhtml-archlinux-XXXXXXXX) -for i in 0 1 2 3 4 5; do +for i in 0 1 2 3 4 5 6 7; do HTML_404[$i]=$(mktemp -t rhtml-archlinux-XXXXXXXX) done HTML_GOOD=$(mktemp -t rhtml-archlinux-XXXXXXXX) @@ -61,17 +61,23 @@ for REPOSITORY in $ARCHLINUX_REPOS ; do if [ ! -z "$(grep 'SSL certificate problem: unable to get local issuer certificate' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then HTML_TARGET=${HTML_404[1]} EXTRA_REASON="with SSL certificate problem" - elif [ ! -z "$(grep 'The requested URL returned error: 404 Not Found' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then - HTML_TARGET=${HTML_404[2]} - EXTRA_REASON="with 404 - file not found" - elif [ ! -z "$(grep 'The requested URL returned error: 503 Service Unavailable' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then + elif [ ! -z "$(grep 'The requested URL returned error: 404' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then HTML_TARGET=${HTML_404[3]} + EXTRA_REASON="with 404 - file not found" + elif [ ! -z "$(grep 'The requested URL returned error: 403' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then + HTML_TARGET=${HTML_404[2]} + EXTRA_REASON="with 403 - forbidden" + elif [ ! -z "$(grep 'The requested URL returned error: 500' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then + HTML_TARGET=${HTML_404[4]} + EXTRA_REASON="with 500 - internal server error" + elif [ ! -z "$(grep 'The requested URL returned error: 503' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then + HTML_TARGET=${HTML_404[5]} EXTRA_REASON="with 503 - service unavailable" elif [ ! -z "$(grep 'FAILED (unknown public key' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then - HTML_TARGET=${HTML_404[4]} + HTML_TARGET=${HTML_404[6]} EXTRA_REASON="to verify source with PGP due to unknown public key" elif [ ! -z "$(egrep '==> ERROR: One or more PGP signatures could not be verified' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then - HTML_TARGET=${HTML_404[5]} + HTML_TARGET=${HTML_404[7]} EXTRA_REASON="to verify source with PGP signatures" fi echo " \"404 download failed $EXTRA_REASON" >> $HTML_BUFFER @@ -171,7 +177,7 @@ cat $HTML_REPOSTATS >> $PAGE rm $HTML_REPOSTATS > /dev/null write_page " " write_page " " -for i in $HTML_UNKNOWN $(for j in 0 1 2 3 4 5 ; do echo ${HTML_404[$j]} ; done) $HTML_DEPWAIT $(for j in 0 1 2 3 4 ; do echo ${HTML_FTBFS[$j]} ; done) $HTML_FTBR $HTML_GOOD ; do +for i in $HTML_UNKNOWN $(for j in 0 1 2 3 4 5 6 7 ; do echo ${HTML_404[$j]} ; done) $HTML_DEPWAIT $(for j in 0 1 2 3 4 ; do echo ${HTML_FTBFS[$j]} ; done) $HTML_FTBR $HTML_GOOD ; do cat $i >> $PAGE rm $i > /dev/null done -- cgit v1.2.3-54-g00ecf
repositorysource packagetest resulttest date1st build log2nd build log