summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rwxr-xr-xweb/todo.sh2
-rwxr-xr-xweb/update12
2 files changed, 7 insertions, 7 deletions
diff --git a/web/todo.sh b/web/todo.sh
index 4d37c8d..a13058d 100755
--- a/web/todo.sh
+++ b/web/todo.sh
@@ -5,7 +5,7 @@ clear
git clean -dxf > /dev/null 2>&1 || true
./update.engywuck
-./update.engywuck-backports
+#./update.engywuck-backports
./update.fuchur
./update.fuchur-backports
diff --git a/web/update b/web/update
index 895e52f..fe5fcc9 100755
--- a/web/update
+++ b/web/update
@@ -17,9 +17,9 @@ MODE="$(basename ${0} | awk -F. '{ print $2 }')"
case "${MODE}" in
engywuck)
- # FIXME
- UPSTREAM_DISTRIBUTIONS="buster buster-updates buster-proposed-updates"
+ UPSTREAM_DISTRIBUTIONS="buster buster-security buster-updates buster-proposed-updates"
DOWNSTREAM_DISTRIBUTION="engywuck"
+ DOWNSTREAM_DISTRIBUTIONS="engywuck engywuck-security engywuck-updates"
DOWNSTREAM_MIRROR="https://apt.progress-linux.org/packages"
DOWNSTREAM_TAG="progress"
;;
@@ -131,7 +131,7 @@ Download_upstream_indices ()
do
case "${DISTRIBUTION}" in
*-security)
- if wget -q -O /dev/null "${UPSTREAM_MIRROR_SECURITY}/dists/${DISTRIBUTION}/updates/Release"
+ if wget -q -O /dev/null "${UPSTREAM_MIRROR_SECURITY}/dists/$(echo ${DISTRIBUTION} | sed -e 's|-security||')/updates/Release"
then
for SECTION in ${UPSTREAM_SECTIONS}
do
@@ -141,13 +141,13 @@ Download_upstream_indices ()
case "${ARCHITECTURE}" in
source)
- wget -q -O - "${UPSTREAM_MIRROR_SECURITY}/dists/${DISTRIBUTION}/updates/${SECTION}/${ARCHITECTURE}/Sources.xz" | xz -d >> "upstream.${MODE}.sources"
+ wget -q -O - "${UPSTREAM_MIRROR_SECURITY}/dists/$(echo ${DISTRIBUTION} | sed -e 's|-security||')/updates/${SECTION}/${ARCHITECTURE}/Sources.xz" | xz -d >> "upstream.${MODE}.sources"
;;
*)
- if wget -q -O /dev/null "${UPSTREAM_MIRROR_SECURITY}/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz"
+ if wget -q -O /dev/null "${UPSTREAM_MIRROR_SECURITY}/dists/$(echo ${DISTRIBUTION} | sed -e 's|-security||')/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz"
then
- wget -q -O - "${UPSTREAM_MIRROR_SECURITY}/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" | xz -d >> "upstream.${MODE}.binaries"
+ wget -q -O - "${UPSTREAM_MIRROR_SECURITY}/dists/$(echo ${DISTRIBUTION} | sed -e 's|-security||')/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" | xz -d >> "upstream.${MODE}.binaries"
fi
;;
esac