summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/plugins/ca_renewal_master.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/install/plugins/ca_renewal_master.py')
-rw-r--r--ipaserver/install/plugins/ca_renewal_master.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipaserver/install/plugins/ca_renewal_master.py b/ipaserver/install/plugins/ca_renewal_master.py
index 37b5487fe..52508b589 100644
--- a/ipaserver/install/plugins/ca_renewal_master.py
+++ b/ipaserver/install/plugins/ca_renewal_master.py
@@ -52,10 +52,10 @@ class update_ca_renewal_master(PostUpdate):
self.debug("found CA renewal master %s", entries[0].dn[1].value)
return (False, False, [])
- criteria = (
- ('cert_storage_location', paths.HTTPD_ALIAS_DIR, certmonger.NPATH),
- ('cert_nickname', 'ipaCert', None),
- )
+ criteria = {
+ 'cert-database': paths.HTTPD_ALIAS_DIR,
+ 'cert-nickname': 'ipaCert',
+ }
request_id = certmonger.get_request_id(criteria)
if request_id is not None:
self.debug("found certmonger request for ipaCert")