From 5b65b6b29fb460e0b64725419cd3abb6ee907a5b Mon Sep 17 00:00:00 2001 From: Gunjan Gupta Date: Sat, 8 Jul 2023 18:33:11 +0530 Subject: [PATCH] Add openssh-client as a dependency when building with CRYPTROOT --- extensions/fs-cryptroot-support.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/fs-cryptroot-support.sh b/extensions/fs-cryptroot-support.sh index 9f44f0949..d5159c0fd 100644 --- a/extensions/fs-cryptroot-support.sh +++ b/extensions/fs-cryptroot-support.sh @@ -4,5 +4,5 @@ function add_host_dependencies__add_cryptroot_tooling() { display_alert "Adding cryptroot to host dependencies" "cryptsetup LUKS" "debug" - EXTRA_BUILD_DEPS="${EXTRA_BUILD_DEPS} cryptsetup" # @TODO: convert to array later + EXTRA_BUILD_DEPS="${EXTRA_BUILD_DEPS} cryptsetup openssh-client" # @TODO: convert to array later }