summaryrefslogtreecommitdiffstats
path: root/ipapython
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2012-09-25 09:48:47 -0400
committerMartin Kosek <mkosek@redhat.com>2012-10-03 17:38:52 +0200
commit8201ffe5fd7246b61546c2cc9334fb754aefe3fa (patch)
treef518b6a84110a6c2e33f61d4c713694b1f69a25c /ipapython
parentf69101b6456996a254fed7672cddcf1a90a86e4c (diff)
downloadfreeipa.git-8201ffe5fd7246b61546c2cc9334fb754aefe3fa.tar.gz
freeipa.git-8201ffe5fd7246b61546c2cc9334fb754aefe3fa.tar.xz
freeipa.git-8201ffe5fd7246b61546c2cc9334fb754aefe3fa.zip
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
Diffstat (limited to 'ipapython')
-rw-r--r--ipapython/platform/base.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipapython/platform/base.py b/ipapython/platform/base.py
index a1e6b4e0..2d39d216 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):