diff options
author | Richard Mortier <mort@cantab.net> | 2019-04-26 10:39:39 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-04-26 13:13:23 +0000 |
commit | c2275905471687b0cf2470edc20d25f2192b8250 (patch) | |
tree | f268b0c2f4558a1a79d161c04f6bc35d7f1401af /lbu.in | |
parent | d9b288faf9170a9a186203d13bcf250b6e51312d (diff) | |
download | alpine-conf-c2275905471687b0cf2470edc20d25f2192b8250.zip |
lbu: fix invocation of `openssl list-cipher-commands` for v1.1.1b
Diffstat (limited to 'lbu.in')
-rw-r--r-- | lbu.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" } |