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

Fix ordering of arguments

The -text was between startdate and its argument
This commit is contained in:
Jarrod Johnson 2022-06-09 08:30:03 -04:00
parent 2825af19c4
commit 5ee6d0ca5d

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', '-notext',
'-notext', '-startdate',
'19700101010101Z', '-enddate', '21000101010101Z', '-keyfile',
keyout, '-out', '/etc/confluent/tls/ca/cacert.pem', '-in', csrout]
)