From 54847fa3b8095cb5d710a44575126c96f3a5fe9c Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Tue, 2 Sep 2025 14:32:34 -0500 Subject: [PATCH] Added bullseye to list of hosts to use archive.debian.org bullseye-backports is only at archive.debian.org so use that instead of the standard locations. Ticket: ENT-13140 Changelog: none --- ci/distribution-patched.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/distribution-patched.sh b/ci/distribution-patched.sh index 8f044c9c0..fc8e582d1 100755 --- a/ci/distribution-patched.sh +++ b/ci/distribution-patched.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -ex -for debian_release in stretch buster; do +for debian_release in stretch buster bullseye; do if grep "CODENAME=$debian_release" /etc/os-release; then echo "deb http://archive.debian.org/debian-archive/debian ${debian_release} main" >/etc/apt/sources.list echo "deb http://archive.debian.org/debian-archive/debian ${debian_release}-backports main" >>/etc/apt/sources.list