From aeffe2da42734655cbaedb2c4d4f9e28bd2df1c0 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Mon, 9 Nov 2015 18:28:47 +0100 Subject: install: drop support for Dogtag 9 Dogtag 9 CA and CA DS install and uninstall code was removed. Existing Dogtag 9 CA and CA DS instances are disabled on upgrade. Creating a replica of a Dogtag 9 IPA master is still supported. https://fedorahosted.org/freeipa/ticket/5197 Reviewed-By: David Kupka --- ipaserver/plugins/dogtag.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ipaserver/plugins') diff --git a/ipaserver/plugins/dogtag.py b/ipaserver/plugins/dogtag.py index 7b8416996..62ec1cce4 100644 --- a/ipaserver/plugins/dogtag.py +++ b/ipaserver/plugins/dogtag.py @@ -1841,7 +1841,9 @@ class ra(rabase.rabase): payload = etree.tostring(doc, pretty_print=False, xml_declaration=True, encoding='UTF-8') self.debug('%s.find(): request: %s', self.fullname, payload) - url = 'http://%s/ca/rest/certs/search?size=%d' % (ipautil.format_netloc(self.ca_host, ipapython.dogtag.configured_constants().UNSECURE_PORT), options.get('sizelimit', 100)) + url = 'http://%s/ca/rest/certs/search?size=%d' % ( + ipautil.format_netloc(self.ca_host, 8080), + options.get('sizelimit', 100)) opener = urllib.request.build_opener() opener.addheaders = [('Accept-Encoding', 'gzip, deflate'), -- cgit