From f0c65ccbffc611267ad2e33b3b77d8686cbb6c5a Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Sat, 20 Apr 2024 13:44:14 +0200 Subject: [PATCH] install correct ssl lib --- cryptlib/install-v1.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptlib/install-v1.sh b/cryptlib/install-v1.sh index 5be8961..9a41176 100644 --- a/cryptlib/install-v1.sh +++ b/cryptlib/install-v1.sh @@ -26,7 +26,7 @@ msg_ok "Setting up ${APP} cryptlib for ssh/ssl (be patient compiling cryptlib)" msg_info "Setting up ${APP} pemtrans (be patient compiling pemtrans)" SSLDEV=$(apt-cache madison libssl-dev | grep 1.0.1 | awk '{print $3}') -apt install -y --allow-downgrades libssl-dev=${SSLDEV} +apt install -y --allow-downgrades libssl1.0.0 libssl-dev=${SSLDEV} wget -N https://github.com/amenonsen/pemtrans/archive/refs/heads/master.zip -O $MSTEMPDIR/pemtrans.zip &>/dev/null rm -rf $MSTEMPDIR/pemtrans-master &>/dev/null pushd $MSTEMPDIR/ &>/dev/null