Merge pull request #2 from lat9nq/old-plus-certs

AppRun.sh: Search for root CA file on system
This commit is contained in:
lat9nq 2022-09-20 18:56:43 -04:00 committed by GitHub
commit 842f2481d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,6 +42,20 @@ if [ -n "$cxxpath" ] || [ -n "$gccpath" ]; then
export LD_LIBRARY_PATH="${cxxpath}${gccpath}${LD_LIBRARY_PATH}"
fi
# Find correct root CA file
_POSSIBLE_CERTIFICATES="/etc/ssl/certs/ca-bundle.crt \
/etc/ssl/certs/ca-certificates.crt /etc/pki/tls/certs/ca-bundle.crt \
/etc/ssl/ca-bundle.pem /etc/pki/tls/cacert.pem"
if [ -z "$SSL_CERT_FILE" ]; then
for i in $_POSSIBLE_CERTIFICATES; do
if [ -f "$i" ]; then
export SSL_CERT_FILE="$i"
break
fi
done
fi
#echo ">>>>> $LD_LIBRARY_PATH"
#echo ">>>>> $LD_PRELOAD"