diff options
author | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2022-02-20 21:09:29 -0300 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2022-02-22 16:37:23 +0100 |
commit | 30b0351039850d01c382b745a1f40b81b4be2a93 (patch) | |
tree | 049f76a7ab0383d0ed828c069f079dada532497f /package/libs/openssl/files/engines.cnf | |
parent | 17a6ca12d3dfbb8808ca6d8a5300ff2a9121ba36 (diff) | |
download | upstream-30b0351039850d01c382b745a1f40b81b4be2a93.tar.gz upstream-30b0351039850d01c382b745a1f40b81b4be2a93.tar.bz2 upstream-30b0351039850d01c382b745a1f40b81b4be2a93.zip |
openssl: configure engine packages during install
This enables an engine during its package's installation, by adding it
to the engines list in /etc/ssl/engines.cnf.d/engines.cnf.
The engine build system was reworked, with the addition of an engine.mk
file that groups some of the engine packages' definitions, and could be
used by out of tree engines as well.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Diffstat (limited to 'package/libs/openssl/files/engines.cnf')
-rw-r--r-- | package/libs/openssl/files/engines.cnf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/libs/openssl/files/engines.cnf b/package/libs/openssl/files/engines.cnf index d034ab5a30..333b1d6c25 100644 --- a/package/libs/openssl/files/engines.cnf +++ b/package/libs/openssl/files/engines.cnf @@ -1,7 +1,7 @@ -[engines] -# To enable an engine, install the package, and uncomment it here: -#devcrypto=devcrypto -#afalg=afalg -#padlock=padlock -#gost=gost +# This file should only contain the [engines] section +# It is subject to change by installing OpenSSL engine packages +# Any lines that have the sequence "engine-name=engine-name" will +# be removed when the respective engine gets uninstalled. +# You may avoid that by adding a space before/after the = sign. +[engines] |