install correct ssl lib

This commit is contained in:
Mario Fetka 2024-04-20 13:44:14 +02:00
parent 3866481fb3
commit f0c65ccbff

View File

@ -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