Skip to content

Commit 884644b

Browse files
committed
Use debian archive for deb10 libssl package
As Debian 10 is EOL, this debian 10 package we are still using here to make mongodb work is getting removed from the mirrors. Currently some still have it, some have deleted it already. Use the archive instead. Fix for currently failing osmo-gsm-tester jobs: 1.879 + wget http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb 1.885 --2025-07-29 08:34:52-- http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb 1.885 Resolving security.debian.org (security.debian.org)... 151.101.2.132, 151.101.66.132, 151.101.130.132, ... 1.886 Connecting to security.debian.org (security.debian.org)|151.101.2.132|:80... connected. 1.891 HTTP request sent, awaiting response... 404 Not Found 1.898 2025-07-29 08:34:52 ERROR 404: Not Found. Change-Id: Ia447d850d38c662aac567aa88685d984c0b42238
1 parent 1e8a5be commit 884644b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

open5gs-latest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN case "$DISTRO" in \
2929
if [ "x${DEBIAN_VERSION}" = "xbookworm" ]; then \
3030
echo "Using bullseye since bookworm mongodb-org package is not available. Furthermore, manually install required libssl1.1." && \
3131
DEBIAN_VERSION="bullseye" && \
32-
wget "http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
32+
wget "http://archive.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
3333
dpkg -i "libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
3434
rm "libssl1.1_1.1.1n-0+deb10u6_amd64.deb"; \
3535
fi; \

open5gs-master/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN case "$DISTRO" in \
2727
if [ "x${DEBIAN_VERSION}" = "xbookworm" ]; then \
2828
echo "Using bullseye since bookworm mongodb-org package is not available. Furthermore, manually install required libssl1.1." && \
2929
DEBIAN_VERSION="bullseye" && \
30-
wget "http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
30+
wget "http://archive.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
3131
dpkg -i "libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
3232
rm "libssl1.1_1.1.1n-0+deb10u6_amd64.deb"; \
3333
fi; \

osmo-gsm-tester/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ RUN set -x && \
106106
mkdir -p /tmp/mongodb && \
107107
cd /tmp/mongodb && \
108108
wget "https://pgp.mongodb.com/server-5.0.asc" -O "/mongodb.key" && \
109-
wget "http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
109+
wget "http://archive.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
110110
dpkg -i "libssl1.1_1.1.1n-0+deb10u6_amd64.deb" && \
111111
echo "deb [signed-by=/mongodb.key] http://repo.mongodb.org/apt/debian bullseye/mongodb-org/5.0 main" \
112112
> /etc/apt/sources.list.d/mongodb-org.list && \

0 commit comments

Comments
 (0)