Fix error detecting OpenSSL version: resd function 'get_openssl_version'.

This commit is contained in:
Christoph 2023-06-23 13:51:36 +02:00
parent b6a5be78c0
commit f1c19afa6c
2 changed files with 18 additions and 0 deletions

View File

@ -161,6 +161,15 @@ trap clean_up SIGHUP SIGINT SIGTERM
#
mkdir "$LOCK_DIR"
# Detect OpenSSL version
#
get_openssl_version
if [[ $? -ne 0 ]] ; then
error "Cannot detect OpenSSL Version."
fi
# ----------
# - Some checks ..

View File

@ -178,6 +178,15 @@ else
terminal=false
fi
# Detect OpenSSL version
#
get_openssl_version
if [[ $? -ne 0 ]] ; then
error "Cannot detect OpenSSL Version."
fi
# -Is systemd supported on this system?
# -
systemd_supported=false