2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Do not clutter the pem file with text

This commit is contained in:
Jarrod Johnson 2022-06-09 08:04:15 -04:00
parent e9ac43f49e
commit 2825af19c4

View File

@ -169,7 +169,7 @@ def create_full_ca(certout):
subprocess.check_call(
['openssl', 'ca', '-config', newcfg, '-batch', '-selfsign',
'-extensions', 'CACert', '-extfile', newcfg,
'-startdate',
'-startdate', '-notext',
'19700101010101Z', '-enddate', '21000101010101Z', '-keyfile',
keyout, '-out', '/etc/confluent/tls/ca/cacert.pem', '-in', csrout]
)