We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 776275a commit 3697a25Copy full SHA for 3697a25
bin/katello-certs-check
@@ -157,7 +157,7 @@ function check-priv-key () {
157
function check-ca-bundle () {
158
printf "Checking CA bundle against the certificate file: "
159
ERROR_PATTERN="error [0-9]+ at"
160
- CHECK=$(openssl verify -CAfile $CA_BUNDLE_FILE -purpose sslserver -verbose $CERT_FILE 2>&1)
+ CHECK=$(openssl verify -no-CApath -CAfile $CA_BUNDLE_FILE -purpose sslserver -verbose $CERT_FILE 2>&1)
161
CHECK_STATUS=$?
162
163
if [[ $CHECK_STATUS != "0" || $CHECK =~ $ERROR_PATTERN ]]; then
0 commit comments