From ad4c13ed557d285bf3a1f1d34b5785d477bf8bd0 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 21 Jun 2024 12:53:19 +0000 Subject: [PATCH] Added install openssl for Alpine --- lib/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/functions.sh b/lib/functions.sh index d4fe70a..09466ff 100644 --- a/lib/functions.sh +++ b/lib/functions.sh @@ -51,8 +51,8 @@ install_packages_alpine() { [ $? -ne 0 ] && failcheck "Failed running service docker start" # Install extra packages - apk add duplicity apache2-utils pipx curl htop bind-tools &> /dev/null - [ $? -ne 0 ] && failcheck "Failed running apk add duplicity apache2-utils pipx curl htop bind-tools" + apk add duplicity apache2-utils pipx curl htop bind-tools openssl &> /dev/null + [ $? -ne 0 ] && failcheck "Failed running apk add duplicity apache2-utils pipx curl htop bind-tools openssl" # Install b2 through pipx pipx install b2 &> /dev/null