From 233be2e8890568e785264786ab6856b580774a2c Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Tue, 21 Sep 2021 13:08:27 -0400 Subject: [PATCH] scripts: add libssl-dev dependency This is required for operating systems that need to build the pycurl wheel Signed-off-by: Eric Callahan --- scripts/install-moonraker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-moonraker.sh b/scripts/install-moonraker.sh index a079cf2..5f7561f 100755 --- a/scripts/install-moonraker.sh +++ b/scripts/install-moonraker.sh @@ -37,7 +37,7 @@ cleanup_legacy() { install_packages() { PKGLIST="python3-virtualenv python3-dev nginx libopenjp2-7 python3-libgpiod" - PKGLIST="${PKGLIST} curl liblmdb0 libsodium-dev zlib1g-dev" + PKGLIST="${PKGLIST} curl libssl-dev liblmdb0 libsodium-dev zlib1g-dev" # Update system package info report_status "Running apt-get update..."