From 95c4b894f93619ed2867d1a769ed3c9f512b890c Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 10 Dec 2010 14:53:06 -0500 Subject: Fix Install using dogtag. The CA is installed before DS so we need to wait until DS is actually installed to be able to ldap_enable the CA instance. Fixes: https://fedorahosted.org/freeipa/ticket/612 --- install/tools/ipa-replica-install | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'install/tools/ipa-replica-install') diff --git a/install/tools/ipa-replica-install b/install/tools/ipa-replica-install index 3d6f4743a..c9df2dd43 100755 --- a/install/tools/ipa-replica-install +++ b/install/tools/ipa-replica-install @@ -391,6 +391,11 @@ def main(): # Configure dirsrv ds = install_replica_ds(config) + # We ned to ldap_enable the CA now that DS is up and running + if CA: + CA.ldap_enable('CA', host_name, dm_password, + util.realm_to_suffix(self.realm_name)) + install_krb(config, setup_pkinit=options.setup_pkinit) install_http(config) if CA: -- cgit