From 3dd31a875650c7fe7c67ca6b47f2058c1181dafb Mon Sep 17 00:00:00 2001 From: Ade Lee Date: Wed, 15 Aug 2012 22:53:51 -0400 Subject: Modifications to install scripts for dogtag 10 Dogtag 10 uses a new installer, new directory layout and new default ports. This patch changes the ipa install code to integrate these changes. https://fedorahosted.org/freeipa/ticket/2846 --- ipapython/platform/base.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'ipapython/platform/base.py') diff --git a/ipapython/platform/base.py b/ipapython/platform/base.py index 8c694ac0..b71e2f32 100644 --- a/ipapython/platform/base.py +++ b/ipapython/platform/base.py @@ -25,7 +25,7 @@ from ipalib.plugable import MagicDict wellknownservices = ['certmonger', 'dirsrv', 'httpd', 'ipa', 'krb5kdc', 'messagebus', 'nslcd', 'nscd', 'ntpd', 'portmap', 'rpcbind', 'kadmin', 'sshd', 'autofs', 'rpcgssd', - 'rpcidmapd', 'pki_cad'] + 'rpcidmapd', 'pki_tomcatd', 'pki-cad'] # The common ports for these services. This is used to wait for the @@ -34,7 +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] } class AuthConfig(object): -- cgit