diff options
Diffstat (limited to '')
-rwxr-xr-x | web/update | 23 | ||||
l--------- | web/update.graograman | 1 | ||||
l--------- | web/update.graograman-backports | 1 |
3 files changed, 25 insertions, 0 deletions
@@ -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 diff --git a/web/update.graograman b/web/update.graograman new file mode 120000 index 0000000..77c430a --- /dev/null +++ b/web/update.graograman @@ -0,0 +1 @@ +update
\ No newline at end of file diff --git a/web/update.graograman-backports b/web/update.graograman-backports new file mode 120000 index 0000000..77c430a --- /dev/null +++ b/web/update.graograman-backports @@ -0,0 +1 @@ +update
\ No newline at end of file |