aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Mortier <mort@cantab.net>2019-04-26 10:39:39 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2019-04-26 13:13:23 +0000
commitc2275905471687b0cf2470edc20d25f2192b8250 (patch)
treef268b0c2f4558a1a79d161c04f6bc35d7f1401af
parentd9b288faf9170a9a186203d13bcf250b6e51312d (diff)
downloadalpine-conf-c2275905471687b0cf2470edc20d25f2192b8250.tar.bz2
alpine-conf-c2275905471687b0cf2470edc20d25f2192b8250.tar.xz
lbu: fix invocation of `openssl list-cipher-commands` for v1.1.1b
-rw-r--r--lbu.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/lbu.in b/lbu.in
index 61be708..f439cf2 100644
--- a/lbu.in
+++ b/lbu.in
@@ -126,7 +126,7 @@ check_openssl() {
[ -z "$ENCRYPTION" ] && return 0
OPENSSL=$(which openssl 2>/dev/null) || die "openssl was not found"
- $OPENSSL list-cipher-commands | grep "^$ENCRYPTION$" > /dev/null \
+ $OPENSSL enc -ciphers | grep "^$ENCRYPTION$" > /dev/null \
|| die "Cipher $ENCRYPTION is not supported"
}