summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xinstall/tools/ipa-server-install2
-rwxr-xr-xipa-client/ipa-install/ipa-client-install10
-rw-r--r--ipaserver/install/certs.py2
3 files changed, 12 insertions, 2 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install
index 3605b0393..411324b61 100755
--- a/install/tools/ipa-server-install
+++ b/install/tools/ipa-server-install
@@ -826,8 +826,6 @@ def main():
# Now put the CA cert where other instances exepct it
ca.publish_ca_cert("/etc/ipa/ca.crt")
- service.start('messagebus')
-
# Create a directory server instance
ds = dsinstance.DsInstance(fstore=fstore)
diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install
index 1caf9c1ee..fe4e1e4dd 100755
--- a/ipa-client/ipa-install/ipa-client-install
+++ b/ipa-client/ipa-install/ipa-client-install
@@ -183,6 +183,11 @@ def uninstall(options, env):
# Always start certmonger. We can't untrack something if it isn't
# running
try:
+ ipautil.service_start('messagebus')
+ except Exception, e:
+ logging.error("messagebus failed to start: %s" % str(e))
+
+ try:
ipautil.service_start('certmonger')
except Exception, e:
logging.error("certmonger failed to start: %s" % str(e))
@@ -493,6 +498,11 @@ def configure_certmonger(fstore, subject_base, cli_realm, hostname, options):
started = True
principal = 'host/%s@%s' % (hostname, cli_realm)
+ try:
+ ipautil.service_start('messagebus')
+ except Exception, e:
+ logging.error("messagebus failed to start: %s" % str(e))
+
# Ensure that certmonger has been started at least once to generate the
# cas files in /var/lib/certmonger/cas.
try:
diff --git a/ipaserver/install/certs.py b/ipaserver/install/certs.py
index 738b329a6..f14efe33f 100644
--- a/ipaserver/install/certs.py
+++ b/ipaserver/install/certs.py
@@ -484,6 +484,7 @@ class CertDB(object):
Tell certmonger to track the given certificate nickname.
"""
service.chkconfig_on("certmonger")
+ service.start("messagebus")
service.start("certmonger")
try:
(stdout, stderr, rc) = certmonger.start_tracking(nickname, self.secdir, password_file)
@@ -513,6 +514,7 @@ class CertDB(object):
# Always start certmonger. We can't untrack something if it isn't
# running
+ service.start("messagebus")
service.start("certmonger")
try:
certmonger.stop_tracking(self.secdir, nickname=nickname)