From e1f589a63fbfb732973b6b22e55f9259b800927d Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Mon, 17 Mar 2025 16:29:23 +0100 Subject: [PATCH] [scripts] Fix download location and version of debootstrap Change-Id: I57e5007e7ccb724668a4a80ee6cd719011b7b2c5 --- bash/common.sh | 4 ++-- bash/setup.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/common.sh b/bash/common.sh index ed2cd19..fb1529b 100755 --- a/bash/common.sh +++ b/bash/common.sh @@ -52,8 +52,8 @@ general_init() MKSBUILD_VERSION=0.194 # The minimum version of debootstrap we use - # The version of debootstrap included in Ubuntu 23.10 Mantic (pre-release) - DEBOOTSTRAP_VERSION=1.0.128+nmu5ubuntu1 + # The version of debootstrap included in Ubuntu 23.10 Mantic + DEBOOTSTRAP_VERSION=1.0.132ubuntu1 RED='\033[0;31m' GREEN='\033[0;32m' diff --git a/bash/setup.sh b/bash/setup.sh index 288253b..56e7b07 100755 --- a/bash/setup.sh +++ b/bash/setup.sh @@ -147,7 +147,7 @@ function checkAndInstallRequirements() if [ ! -f "$HOME/bin/debootstrap.v${DEBOOTSTRAP_VERSION}" ]; then log "Installing version ${DEBOOTSTRAP_VERSION} of debootstrap" pushd /tmp - TRACE wget "https://mirrors.kernel.org/ubuntu/pool/main/d/debootstrap/debootstrap_${DEBOOTSTRAP_VERSION}_all.deb" + TRACE wget "https://old-releases.ubuntu.com/ubuntu/pool/main/d/debootstrap/debootstrap_${DEBOOTSTRAP_VERSION}_all.deb" sudo dpkg -i "debootstrap_${DEBOOTSTRAP_VERSION}_all.deb" popd touch "$HOME/bin/debootstrap.v${DEBOOTSTRAP_VERSION}"