Fixed LIBSSLURL in src/ubuntu/install/install_squid.sh - The old url no longer exists and results in build errors

This commit is contained in:
Teja Swaroop Pothala 2024-11-06 20:51:53 +05:30
parent c458aeb2e2
commit 4c5399cd90
No known key found for this signature in database
GPG Key ID: E5F3829663E6A4B2

View File

@ -3,9 +3,9 @@ set -ex
ARCH=$(arch | sed 's/aarch64/arm64/g' | sed 's/x86_64/amd64/g')
if [[ "${ARCH}" == "arm64" ]]; then
LIBSSLURL="http://ports.ubuntu.com/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_arm64.deb"
LIBSSLURL="http://ports.ubuntu.com/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_arm64.deb"
else
LIBSSLURL="http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb"
LIBSSLURL="http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb"
fi
# intall squid