From a9e1c014f601a567f4aa5135d02883c498835268 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Dec 01 2020 18:05:40 +0000 Subject: Change KRA profiles in certmonger tracking so they can renew Internal profiles were assigned which prevented rewewals. dogtag is providing a new profile for the audit signing cert, caAuditSigningCert. There are existing profiles for the transport (caTransportCert) and storage (caStorageCert) certificates. https://pagure.io/freeipa/issue/8545 Signed-off-by: Rob Crittenden Reviewed-By: Florence Blanc-Renaud --- diff --git a/ipaserver/install/krainstance.py b/ipaserver/install/krainstance.py index bbd2660..e63db3f 100644 --- a/ipaserver/install/krainstance.py +++ b/ipaserver/install/krainstance.py @@ -65,9 +65,9 @@ class KRAInstance(DogtagInstance): # use for that certificate. 'configure_renewal()' reads this # dict. The profile MUST be specified. tracking_reqs = { - 'auditSigningCert cert-pki-kra': 'caInternalAuthAuditSigningCert', - 'transportCert cert-pki-kra': 'caInternalAuthTransportCert', - 'storageCert cert-pki-kra': 'caInternalAuthDRMstorageCert', + 'auditSigningCert cert-pki-kra': 'caAuditSigningCert', + 'transportCert cert-pki-kra': 'caTransportCert', + 'storageCert cert-pki-kra': 'caStorageCert', } def __init__(self, realm):