diff options
author | Helmut Grohne <helmut@subdivi.de> | 2024-02-26 14:30:59 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2024-02-26 14:37:54 +0100 |
commit | 4c6e98f15b533c0bd2986b9570aa1ada12925c61 (patch) | |
tree | f3c01a8aab63424fd75b7cd73f252aec0c561167 | |
parent | 1d2ec87e935fbff3766d6062c33dbdfa7f3db902 (diff) | |
download | debvm-4c6e98f15b533c0bd2986b9570aa1ada12925c61.tar.gz |
tests/dist-upgrades.sh: must use archive.d.o for old releases
-rwxr-xr-x | tests/dist-upgrades.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/dist-upgrades.sh b/tests/dist-upgrades.sh index b90f17b..dec3dad 100755 --- a/tests/dist-upgrades.sh +++ b/tests/dist-upgrades.sh @@ -23,7 +23,11 @@ set -ex export DEBIAN_FRONTEND=noninteractive -sed -i "s/\([^ ]*\) \([^ ]*\) [^ ]* \(.*\)/\1 \2 $1 \3/" /etc/apt/sources.list +case "$1" in + jessie|stretch) MIRROR="http://archive.debian.org/debian" ;; + *) MIRROR="http://deb.debian.org/debian" ;; +esac +echo "deb $MIRROR $1 main" > /etc/apt/sources.list apt update apt dist-upgrade -y @@ -37,7 +41,7 @@ EOF chmod +x upgrade ssh-keygen -f "$SSH_KEYPATH" -N '' -debvm-create --sshkey="$SSH_KEYPATH.pub" -r jessie --size=3G -- --customize-hook="copy-in upgrade /usr/local/bin" +debvm-create --sshkey="$SSH_KEYPATH.pub" -r jessie --size=3G -- --customize-hook="copy-in upgrade /usr/local/bin" http://archive.debian.org/debian SSH_PORT=2222 for RELEASE in stretch buster bullseye bookworm sid; do |