From b7cde8b4131bb7e726c798fa751fb13c447f87b4 Mon Sep 17 00:00:00 2001 From: Heewa Barfchin Date: Wed, 3 Jun 2026 01:15:06 -0400 Subject: [PATCH] Add openssl pkg to alpine to provide libcrypto --- bootstrap-salt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 386143f6e..5b1235bd7 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -5468,7 +5468,7 @@ install_alpine_linux_git_deps() { # shellcheck disable=SC2119 __git_clone_and_checkout || return 1 - apk -U add python3 python3-dev py3-pip py3-setuptools g++ linux-headers zeromq-dev openrc || return 1 + apk -U add python3 python3-dev py3-pip py3-setuptools g++ linux-headers zeromq-dev openrc openssl-dev || return 1 _PY_EXE=python3 return 0 }