SERVER-103640 Fix SSL_CERT_DIR typo (#34836)

GitOrigin-RevId: 81b723b46386a0c3adefdf6c1d18554d35eeeae9
This commit is contained in:
Zack Winter 2025-04-09 13:44:12 -07:00 committed by MongoDB Bot
parent b2461f752c
commit 9681c2cd8e
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ cert_locs+=("/etc/ssl/cert.pem") # Alpine Linux
for cert in ${cert_locs[@]}; do for cert in ${cert_locs[@]}; do
if [ -f $cert ]; then if [ -f $cert ]; then
export SSL_CERT_DI=R$(dirname $cert) export SSL_CERT_DIR=$(dirname $cert)
export SSL_CERT_FILE=$cert export SSL_CERT_FILE=$cert
break break
fi fi