From 62c044cec558fbe702c755ef45cc2d0d42132d11 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 13 Nov 2024 02:46:15 +0100 Subject: [PATCH] feat: Disable HTTP keepalives --- src/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/install.sh b/src/install.sh index 3944f73..9835fda 100644 --- a/src/install.sh +++ b/src/install.sh @@ -170,7 +170,7 @@ if [ ! -s "$RDC" ]; then html "$MSG..." /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 --no-http-keep-alive --show-progress "$PROGRESS"; rc=$?; } || : fKill "progress.sh" @@ -251,7 +251,7 @@ else /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 --no-http-keep-alive --show-progress "$PROGRESS"; rc=$?; } || : fKill "progress.sh"