summaryrefslogtreecommitdiffstats
path: root/web/update
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-06-22 16:39:45 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-08-19 16:05:40 +0000
commit4002d038dd359ceb6cd8c810a0c10662d0851448 (patch)
treec6646ed1f2a919fea73fa30e95fc5ba120ef36f8 /web/update
parentUpdating. (diff)
downloadprogress-linux-tools-4002d038dd359ceb6cd8c810a0c10662d0851448.tar.xz
progress-linux-tools-4002d038dd359ceb6cd8c810a0c10662d0851448.zip
Updating.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/update')
-rwxr-xr-xweb/update23
1 files changed, 23 insertions, 0 deletions
diff --git a/web/update b/web/update
index a73d6a9..20758ae 100755
--- a/web/update
+++ b/web/update
@@ -43,6 +43,21 @@ case "${MODE}" in
DOWNSTREAM_TAG="progress"
;;
+ graograman)
+ #UPSTREAM_DISTRIBUTIONS="bookworm bookworm-updates bookworm-proposed-updates"
+ UPSTREAM_DISTRIBUTIONS="sid experimental"
+ DOWNSTREAM_DISTRIBUTION="graograman"
+ DOWNSTREAM_MIRROR="https://apt.progress-linux.org/packages"
+ DOWNSTREAM_TAG="progress"
+ ;;
+
+ graograman-backports)
+ UPSTREAM_DISTRIBUTIONS="sid experimental"
+ DOWNSTREAM_DISTRIBUTION="graograman-backports"
+ DOWNSTREAM_MIRROR="https://apt.progress-linux.org/packages"
+ DOWNSTREAM_TAG="progress"
+ ;;
+
buster)
UPSTREAM_DISTRIBUTIONS="buster buster-updates buster-proposed-updates"
DOWNSTREAM_DISTRIBUTION="buster"
@@ -106,6 +121,14 @@ Download_upstream_sources ()
wget -q -O - "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/source/Sources.xz" | xz -d >> "upstream.${MODE}.sources"
done
fi
+
+ if wget -q -O /dev/null "http://security.debian.org/dists/${DISTRIBUTION}-security/Release"
+ then
+ for SECTION in ${UPSTREAM_SECTIONS}
+ do
+ wget -q -O - "http://security.debian.org/dists/${DISTRIBUTION}-security/${SECTION}/source/Sources.xz" | xz -d >> "upstream.${MODE}.sources"
+ done
+ fi
;;
esac