summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/server
diff options
context:
space:
mode:
authorStanislav Laznicka <slaznick@redhat.com>2016-11-07 09:48:52 +0100
committerJan Cholasta <jcholast@redhat.com>2016-11-11 12:17:25 +0100
commitba4df6449aaa0843ab43a1a2b3cb1df8bb022c24 (patch)
tree0c5d1dfb90b02945bdbaaa2611f2857e3e7cb9bc /ipaserver/install/server
parentbde1d82ebe32be339c30c85048fd18e1ce99867d (diff)
downloadfreeipa-ba4df6449aaa0843ab43a1a2b3cb1df8bb022c24.tar.gz
freeipa-ba4df6449aaa0843ab43a1a2b3cb1df8bb022c24.tar.xz
freeipa-ba4df6449aaa0843ab43a1a2b3cb1df8bb022c24.zip
Move the pki-tomcat restart to cainstance creation
pki-tomcat would have been restarted in install and replicainstall for backward compatibility reasons. As Dogtag 9 is not supported anymore, we can move this restart only for DL0 replica installation. https://fedorahosted.org/freeipa/ticket/6392 Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipaserver/install/server')
-rw-r--r--ipaserver/install/server/install.py3
-rw-r--r--ipaserver/install/server/replicainstall.py3
2 files changed, 0 insertions, 6 deletions
diff --git a/ipaserver/install/server/install.py b/ipaserver/install/server/install.py
index 60d38dc88..b510ec20a 100644
--- a/ipaserver/install/server/install.py
+++ b/ipaserver/install/server/install.py
@@ -854,9 +854,6 @@ def install(installer):
service.print_msg("Restarting the KDC")
krb.restart()
- if setup_ca:
- services.knownservices['pki_tomcatd'].restart('pki-tomcat')
-
if options.setup_dns:
dns.install(False, False, options)
else:
diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py
index fb7188913..21bcd8691 100644
--- a/ipaserver/install/server/replicainstall.py
+++ b/ipaserver/install/server/replicainstall.py
@@ -935,9 +935,6 @@ def install(installer):
service.print_msg("Restarting the KDC")
krb.restart()
- if config.setup_ca:
- services.knownservices['pki_tomcatd'].restart('pki-tomcat')
-
if options.setup_dns:
dns.install(False, True, options)
else: