mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-22 14:23:41 +01:00
add support for archlinux
archlinux has ca certificates in different place than Fedora
This commit is contained in:
parent
8817a7b1c8
commit
a0cb766381
@ -9,6 +9,9 @@ DOBENCHMARK=0
|
|||||||
BENCHMARKITER=30
|
BENCHMARKITER=30
|
||||||
OPENSSLBIN="$(dirname $0)/openssl"
|
OPENSSLBIN="$(dirname $0)/openssl"
|
||||||
CACERTS=${CACERTS:-/etc/pki/tls/certs/ca-bundle.crt}
|
CACERTS=${CACERTS:-/etc/pki/tls/certs/ca-bundle.crt}
|
||||||
|
if [ ! -e "$CACERTS" ]; then
|
||||||
|
CACERTS="/etc/ssl/certs/ca-certificates.crt"
|
||||||
|
fi
|
||||||
if [ ! -e "$CACERTS" ]; then
|
if [ ! -e "$CACERTS" ]; then
|
||||||
echo "Warning: CA Certificates not found at $CACERTS, export CACERTS variable with location of your trust anchors" 1>&2
|
echo "Warning: CA Certificates not found at $CACERTS, export CACERTS variable with location of your trust anchors" 1>&2
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user