osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40874?usp=email )
Change subject: testenv: Dockerfile: fix Suites: stable-backports ......................................................................
testenv: Dockerfile: fix Suites: stable-backports
Using "stable-backports" broke now that Debian 13 is out. Use "bookworm-backports" instead.
Fix for: E: The value 'bookworm-backports' is invalid for APT::Default-Release as such a release is not available in the sources
Change-Id: Icc46b6dc2493806dc12f0ff442abd70fe5b48eb8 --- M _testenv/data/podman/Dockerfile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/74/40874/1
diff --git a/_testenv/data/podman/Dockerfile b/_testenv/data/podman/Dockerfile index d79bda9..aa99337 100644 --- a/_testenv/data/podman/Dockerfile +++ b/_testenv/data/podman/Dockerfile @@ -101,7 +101,7 @@ RUN set -x && \ echo "Types: deb deb-src" >>"$BACKPORTS_SOURCES_LIST" && \ echo "URIs: http://deb.debian.org/debian" >>"$BACKPORTS_SOURCES_LIST" && \ - echo "Suites: stable-backports" >>"$BACKPORTS_SOURCES_LIST" && \ + echo "Suites: bookworm-backports" >>"$BACKPORTS_SOURCES_LIST" && \ echo "Components: main" >>"$BACKPORTS_SOURCES_LIST" && \ echo "Enabled: yes" >>"$BACKPORTS_SOURCES_LIST" && \ echo "Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg" >>"$BACKPORTS_SOURCES_LIST" && \