summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-08-05 18:17:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-17 20:19:25 +0000
commite895c616920a378f12b5c436571551e0b70fc5b4 (patch)
tree1944092d8969c651ea7e86dd0ab8be81c65907c9 /web
parentUpdating. (diff)
downloadprogress-linux-tools-e895c616920a378f12b5c436571551e0b70fc5b4.tar.xz
progress-linux-tools-e895c616920a378f12b5c436571551e0b70fc5b4.zip
Updating.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web')
-rwxr-xr-xweb/update7
1 files changed, 5 insertions, 2 deletions
diff --git a/web/update b/web/update
index 2575031..cd2d1e1 100755
--- a/web/update
+++ b/web/update
@@ -46,7 +46,7 @@ case "${MODE}" in
graograman)
#UPSTREAM_DISTRIBUTIONS="bookworm bookworm-updates bookworm-proposed-updates"
- UPSTREAM_DISTRIBUTIONS="sid experimental"
+ UPSTREAM_DISTRIBUTIONS="sid"
DOWNSTREAM_DISTRIBUTION="graograman"
DOWNSTREAM_MIRROR="https://apt.progress-linux.org/packages"
DOWNSTREAM_TAG="progress"
@@ -139,7 +139,10 @@ Download_upstream_indices ()
;;
*)
- wget -q -O - "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" | xz -d >> "upstream.${MODE}.binaries"
+ if wget -q -O /dev/null "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz"
+ then
+ wget -q -O - "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" | xz -d >> "upstream.${MODE}.binaries"
+ fi
;;
esac
done