aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xinitramfs-init.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/initramfs-init.in b/initramfs-init.in
index 374c352..52e4e5e 100755
--- a/initramfs-init.in
+++ b/initramfs-init.in
@@ -43,7 +43,7 @@ unpack_apkovl() {
# we need openssl. let apk handle deps
apk add --quiet --initdb --repositories-file $repofile openssl || return 1
- if ! openssl list-cipher-commands | grep "^$suffix$" > /dev/null; then
+ if ! openssl list -1 -cipher-commands | grep "^$suffix$" > /dev/null; then
errstr="Cipher $suffix is not supported"
return 1
fi