2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-01-27 19:37:57 +00:00

Fix mistake in the cert util

This commit is contained in:
Jarrod Johnson 2020-02-03 15:37:20 -05:00
parent 4c83a1a04e
commit 3bc366bef4

View File

@ -7,7 +7,7 @@ import tempfile
def get_openssl_conf_location():
if exists('/etc/pki/tls/openssl.cnf'):
return '/etc/pki/tls/openssl.cnf'
elif exists('/etc/ssl/openssl.cnf');
elif exists('/etc/ssl/openssl.cnf'):
return '/etc/ssl/openssl.cnf'
else:
raise Exception("Cannot find openssl config file")