From 25545a33aab48c1c9780e5a634d5f94d623f8930 Mon Sep 17 00:00:00 2001 From: Iru Cai Date: Sat, 6 Aug 2016 13:14:38 +0800 Subject: download files with wget's -c option --- buildlive | 5 ++--- functions.sh | 14 ++++++++++++-- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/buildlive b/buildlive index 54cfc35..1c87087 100755 --- a/buildlive +++ b/buildlive @@ -66,11 +66,10 @@ echo "uuid=$UUID" > "$GRUBCFG" for i in ${DISTROLIST[@]} do process_distro "$i" - if [ -f "isofiles/$ISOFILE" ]; then - checksum_verify + if [ -f "isofiles/$ISOFILE" ] && checksum_verify; then + true else download_iso - checksum_verify fi install_live diff --git a/functions.sh b/functions.sh index 1ee9590..07e3c15 100644 --- a/functions.sh +++ b/functions.sh @@ -16,7 +16,7 @@ checksum_verify() { if [[ $_cksum == $_hashsum ]]; then msg "$ISOFILE ok." else - fatalerror "$ISOFILE checksum bad!" + msg "$ISOFILE checksum bad!" && return 1 fi } @@ -32,7 +32,17 @@ download_iso() { mkdir -p isofiles for url in ${MIRRORLIST[@]} do - wget -O "isofiles/$ISOFILE" "$url/$ISOURL" && return 0 + wget -c -O "isofiles/$ISOFILE" "$url/$ISOURL" + if checksum_verify; then + return 0 + else + # checksum bad, may be due to a bad partial download + # so remove the file and try again + rm -f "isofiles/$ISOFILE" + wget -O "isofiles/$ISOFILE" "$url/$ISOURL" + checksum_verify && return 0 + rm -f "isofiles/$ISOFILE" # then try next mirror + fi done fatalerror "Fail to download $ISOFILE!" } -- cgit v1.2.3