osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/40656?usp=email )
Change subject: repo-install-test: debian10: use archive mirror ......................................................................
repo-install-test: debian10: use archive mirror
Related: OS#6811 Change-Id: I5c6d6624c083e103927942f62e76fbb7b87127a8 --- M scripts/repo-install-test.sh 1 file changed, 7 insertions(+), 0 deletions(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/scripts/repo-install-test.sh b/scripts/repo-install-test.sh index 9345876..27bb450 100755 --- a/scripts/repo-install-test.sh +++ b/scripts/repo-install-test.sh @@ -143,6 +143,13 @@ # https://almalinux.org/blog/2023-12-20-almalinux-8-key-update/ qemu_ssh dnf upgrade -y almalinux-release ;; + debian10) + qemu_ssh sed \ + -i \ + -e s/deb.debian.org/archive.debian.org/g \ + -e s/security.debian.org/archive.debian.org/g \ + /etc/apt/sources.list + ;; esac }