From e7afe1dec202de8064b90c526f0d4a2fdf224824 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 3 Jan 2011 16:41:32 -0500 Subject: [PATCH] Make sure that the messagebus service is started. This will prevent certmonger failures. On very minimal installs it seems that messagebus is not always started. ticket 528 --- install/tools/ipa-server-install | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index b73b63e10..2bbf48171 100755 --- a/install/tools/ipa-server-install +++ b/install/tools/ipa-server-install @@ -741,6 +741,8 @@ 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()