diff options
author | Ade Lee <alee@redhat.com> | 2012-08-15 22:53:51 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2012-09-17 18:43:36 -0400 |
commit | 3dd31a875650c7fe7c67ca6b47f2058c1181dafb (patch) | |
tree | 137f46dfe1684ebcbd6e9e70ef3c5a690ab32d07 /ipapython/platform/base.py | |
parent | 79b89f41962985cf0ab96238b21409b5874f67f8 (diff) | |
download | freeipa.git-3dd31a875650c7fe7c67ca6b47f2058c1181dafb.tar.gz freeipa.git-3dd31a875650c7fe7c67ca6b47f2058c1181dafb.tar.xz freeipa.git-3dd31a875650c7fe7c67ca6b47f2058c1181dafb.zip |
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
Diffstat (limited to 'ipapython/platform/base.py')
-rw-r--r-- | ipapython/platform/base.py | 7 |
1 files changed, 5 insertions, 2 deletions
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): |