Added install openssl for Alpine

This commit is contained in:
root 2024-06-21 12:53:19 +00:00
parent 3f79df0a0f
commit ad4c13ed55

View File

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