mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 13:20:00 -04:00
Check for pkcs11-tool in keyfromlabel system test
pkcs11-tool which is typically part of the opensc package is required
for the keyfromlabel test.
(cherry picked from commit e9d9f11539)
This commit is contained in:
parent
e8f1c7e1fb
commit
8339c60346
1 changed files with 2 additions and 2 deletions
|
|
@ -13,9 +13,9 @@
|
|||
|
||||
. ../conf.sh
|
||||
|
||||
if [ -n "${SOFTHSM2_MODULE}" ] && command -v softhsm2-util >/dev/null; then
|
||||
if [ -n "${SOFTHSM2_MODULE}" ] && command -v pkcs11-tool >/dev/null && command -v softhsm2-util >/dev/null; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo_i "skip: softhsm2-util not available"
|
||||
echo_i "skip: softhsm2-util or pkcs11-tool not available"
|
||||
exit 255
|
||||
|
|
|
|||
Loading…
Reference in a new issue