From 4bb453510197bb2c51d7f9b334052d68151bca83 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 19 Sep 2012 08:01:40 -0400 Subject: Use correct Dogtag port in ipaserver.install.certs On an instance upgraded from Dogtag 9 to Dogtag 10, ipa-replica-prepare used the wrong port number. Fix that. --- ipaserver/install/certs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipaserver/install/certs.py') diff --git a/ipaserver/install/certs.py b/ipaserver/install/certs.py index 0094d0b89..bfbba08f0 100644 --- a/ipaserver/install/certs.py +++ b/ipaserver/install/certs.py @@ -663,7 +663,7 @@ class CertDB(object): result = dogtag.https_request( self.host_name, api.env.ca_ee_install_port or - dogtag.install_constants.EE_SECURE_PORT, + dogtag.configured_constants().EE_SECURE_PORT, "/ca/ee/ca/profileSubmitSSLClient", self.secdir, password, "ipaCert", **params) http_status, http_reason_phrase, http_headers, http_body = result @@ -751,7 +751,7 @@ class CertDB(object): result = dogtag.https_request( self.host_name, api.env.ca_ee_install_port or - dogtag.install_constants.EE_SECURE_PORT, + dogtag.configured_constants().EE_SECURE_PORT, "/ca/ee/ca/profileSubmitSSLClient", self.secdir, password, "ipaCert", **params) http_status, http_reason_phrase, http_headers, http_body = result -- cgit