From 36290119132c6487e6f19452fe346c4ae6a427c6 Mon Sep 17 00:00:00 2001 From: Kevin Guerineau Date: Fri, 10 May 2024 07:37:42 +0200 Subject: [PATCH] [IMP] Change certificate to concatenate --- common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.py b/common.py index 0a6a9a4..4458377 100644 --- a/common.py +++ b/common.py @@ -361,8 +361,8 @@ def generate_dc_certificate(dc_name=None, ca_name=None, force=False, verbose=Fal if sign_dc_cert.returncode == 0: if os.path.isfile(dc_certfile): - print('Concatenation of DC and Root cert') - subprocess.run(f'cat {dc_certfile} {TisPKI.root_ca_certfile()} > {dc_certfile}_full',shell=True) + print('Concatenation of DC and intermediate cert') + subprocess.run(f'cat {dc_certfile} {dc_ca_certfile} > {dc_certfile}_full',shell=True) Printing.success(f'Certificat is stored in : {dc_certfile}') Printing.success(f'Key is stored in : {dc_keyfile}') else: