Update install.sh

This commit is contained in:
Kroese 2024-06-05 10:37:19 +02:00 committed by GitHub
parent 7f1e0aadce
commit b2512320d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -132,9 +132,8 @@ if [ ! -s "$RDC" ]; then
rm -f "$RD" rm -f "$RD"
rm -f "$RDC" rm -f "$RDC"
MSG="Downloading installer..." MSG="Downloading installer"
PRG="Downloading installer ([P])..." info "Install: $MSG..." && html "$MSG..."
info "Install: $MSG" && html "$MSG"
SIZE=5394188 SIZE=5394188
POS="65627648-71021835" POS="65627648-71021835"
@ -142,7 +141,7 @@ if [ ! -s "$RDC" ]; then
LOC="$DL/release/7.0.1/42218/DSM_VirtualDSM_42218.pat" LOC="$DL/release/7.0.1/42218/DSM_VirtualDSM_42218.pat"
[[ "${URL,,}" == *"_42218.pat" ]] && LOC="$URL" [[ "${URL,,}" == *"_42218.pat" ]] && LOC="$URL"
/run/progress.sh "$RD" "$SIZE" "$PRG" & /run/progress.sh "$RD" "$SIZE" "$MSG ([P])..." &
{ curl -r "$POS" -sfk --connect-timeout 10 -S -o "$RD" "$LOC"; rc=$?; } || : { curl -r "$POS" -sfk --connect-timeout 10 -S -o "$RD" "$LOC"; rc=$?; } || :
fKill "progress.sh" fKill "progress.sh"
@ -167,8 +166,8 @@ if [ ! -s "$RDC" ]; then
rm -f "$RD" rm -f "$RD"
rm -f "$PAT" rm -f "$PAT"
html "$MSG" html "$MSG..."
/run/progress.sh "$PAT" "$SIZE" "$PRG" & /run/progress.sh "$PAT" "$SIZE" "$MSG ([P])..." &
{ wget "$LOC" -O "$PAT" -q --no-check-certificate --timeout=10 --show-progress "$PROGRESS"; rc=$?; } || : { wget "$LOC" -O "$PAT" -q --no-check-certificate --timeout=10 --show-progress "$PROGRESS"; rc=$?; } || :
fKill "progress.sh" fKill "progress.sh"
@ -226,9 +225,8 @@ rm -rf "$TMP" && mkdir -p "$TMP"
info "Install: Downloading $BASE.pat..." info "Install: Downloading $BASE.pat..."
MSG="Downloading DSM..." MSG="Downloading DSM"
PRG="Downloading DSM ([P])..." html "$MSG..."
html "$MSG"
PAT="/$BASE.pat" PAT="/$BASE.pat"
rm -f "$PAT" rm -f "$PAT"
@ -243,7 +241,7 @@ else
[[ "${URL,,}" == *"_69057.pat" ]] && SIZE=363837333 [[ "${URL,,}" == *"_69057.pat" ]] && SIZE=363837333
[[ "${URL,,}" == *"_42218.pat" ]] && SIZE=379637760 [[ "${URL,,}" == *"_42218.pat" ]] && SIZE=379637760
/run/progress.sh "$PAT" "$SIZE" "$PRG" & /run/progress.sh "$PAT" "$SIZE" "$MSG ([P])..." &
{ wget "$URL" -O "$PAT" -q --no-check-certificate --timeout=10 --show-progress "$PROGRESS"; rc=$?; } || : { wget "$URL" -O "$PAT" -q --no-check-certificate --timeout=10 --show-progress "$PROGRESS"; rc=$?; } || :