From 9c0426c3ed6045e3af54c5c00be23bb63eb92606 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Oct 03 2012 15:38:42 +0000 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 --- diff --git a/ipapython/platform/base.py b/ipapython/platform/base.py index a1e6b4e..2d39d21 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):