mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
Merge pull request #9449 from jure/certificate_validation_fix
Add the default Homebrew path for OpenSSL certs on OS X
This commit is contained in:
commit
9c619863a2
1 changed files with 2 additions and 0 deletions
|
@ -219,6 +219,8 @@ class SSLValidationHandler(urllib2.BaseHandler):
|
||||||
# Write the dummy ca cert if we are running on Mac OS X
|
# Write the dummy ca cert if we are running on Mac OS X
|
||||||
if platform == 'Darwin':
|
if platform == 'Darwin':
|
||||||
os.write(tmp_fd, DUMMY_CA_CERT)
|
os.write(tmp_fd, DUMMY_CA_CERT)
|
||||||
|
# Default Homebrew path for OpenSSL certs
|
||||||
|
paths_checked.append('/usr/local/etc/openssl')
|
||||||
|
|
||||||
# for all of the paths, find any .crt or .pem files
|
# for all of the paths, find any .crt or .pem files
|
||||||
# and compile them into single temp file for use
|
# and compile them into single temp file for use
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue