summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/aggregate.sh7
-rwxr-xr-xscripts/pull-and-verify.sh2
2 files changed, 7 insertions, 2 deletions
diff --git a/scripts/aggregate.sh b/scripts/aggregate.sh
index 3d2c47e4..065ad9cb 100755
--- a/scripts/aggregate.sh
+++ b/scripts/aggregate.sh
@@ -21,5 +21,10 @@ grep -v -e '^#' $ODIR/metadata.lst | (while read url cert; do
cfile=$DIR/certs/$cert
fi
cmd="$DIR/scripts/pull-and-verify.sh $url $ODIR $cfile"
- $cmd || { echo "$cmd returned $ret" ; exit $ret ; }
+ $cmd
+ ret=$?
+ if [ "$ret" != "0" ] ; then
+ echo "$cmd returned $ret"
+ exit $ret
+ fi
done) || exit $ret
diff --git a/scripts/pull-and-verify.sh b/scripts/pull-and-verify.sh
index 03992f1e..92485214 100755
--- a/scripts/pull-and-verify.sh
+++ b/scripts/pull-and-verify.sh
@@ -10,7 +10,7 @@ DIR=$2
CERT=$3
TMPF=`mktemp`
-wget --timeout 120 --no-check-certificate -O$TMPF $URL || die "Unable to download $URL: $?"
+wget -q --timeout 120 --no-check-certificate -O$TMPF $URL || die "Unable to download $URL: $?"
if [ "x$CERT" != "x" ]; then
samlsign -c $CERT -f $TMPF || die "Unable to verify $URL with $CERT: $?"
fi