diff options
Diffstat (limited to 'scripts/pull-and-verify.sh')
-rwxr-xr-x | scripts/pull-and-verify.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/pull-and-verify.sh b/scripts/pull-and-verify.sh index 7cfda0a8..03992f1e 100755 --- a/scripts/pull-and-verify.sh +++ b/scripts/pull-and-verify.sh @@ -10,7 +10,7 @@ DIR=$2 CERT=$3 TMPF=`mktemp` -wget --no-check-certificate -O$TMPF $URL || die "Unable to download $URL: $?" +wget --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 @@ -31,6 +31,6 @@ done rm -f $T echo "</EntitiesDescriptor>" ) > $DIR.mxml -git add $DIR.mxml $DIR -git commit -m "$URL into $DIR" $DIR.mxml $DIR +#git add $DIR.mxml $DIR +#git commit -m "$URL into $DIR" $DIR.mxml $DIR rm -rf $TMPF $TMPD |