From 9c0426c3ed6045e3af54c5c00be23bb63eb92606 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 25 Sep 2012 09:48:47 -0400 Subject: Wait for secure Dogtag ports when starting the pki services Dogtag opens not only the insecure port (8080 or 9180, for d10 and d9 respectively), but also secure ports (8443 or 9443&9444). Wait for them when starting. Part of the fix for https://fedorahosted.org/freeipa/ticket/3084 --- ipapython/platform/base.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipapython') diff --git a/ipapython/platform/base.py b/ipapython/platform/base.py index a1e6b4e07..2d39d2169 100644 --- a/ipapython/platform/base.py +++ b/ipapython/platform/base.py @@ -34,10 +34,10 @@ wellknownports = { 'dirsrv@PKI-IPA.service': [7389], 'PKI-IPA': [7389], 'dirsrv': [389], # this is only used if the incoming instance name is blank - 'pki-cad': [9180], - 'pki-tomcatd@pki-tomcat.service': [8080], - 'pki-tomcat': [8080], - 'pki-tomcatd': [8080], # used if the incoming instance name is blank + 'pki-cad': [9180, 9443, 9444], + 'pki-tomcatd@pki-tomcat.service': [8080, 8443], + 'pki-tomcat': [8080, 8443], + 'pki-tomcatd': [8080, 8443], # used if the incoming instance name is blank } class AuthConfig(object): -- cgit