summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-ca-install
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-07-14 14:09:53 +0200
committerRob Crittenden <rcritten@redhat.com>2011-07-14 22:36:53 -0400
commitd802aa57f16e3267b4db739721a56e041e5f888e (patch)
treee5bd63dfcf490160e08b012c72f174ee5f021be3 /install/tools/ipa-ca-install
parentaece880d8f53d3f641a5a1ca3df494eb352117b1 (diff)
downloadfreeipa-d802aa57f16e3267b4db739721a56e041e5f888e.tar.gz
freeipa-d802aa57f16e3267b4db739721a56e041e5f888e.tar.xz
freeipa-d802aa57f16e3267b4db739721a56e041e5f888e.zip
Fix self-signed replica installation
When a replica for self-signed server is being installed, the installer crashes with "Not a dogtag CA installation". Make sure that installation is handled correctly for both dogtag and self-signed replicas. https://fedorahosted.org/freeipa/ticket/1479
Diffstat (limited to 'install/tools/ipa-ca-install')
-rwxr-xr-xinstall/tools/ipa-ca-install4
1 files changed, 4 insertions, 0 deletions
diff --git a/install/tools/ipa-ca-install b/install/tools/ipa-ca-install
index edd8f4cfd..e6adae057 100755
--- a/install/tools/ipa-ca-install
+++ b/install/tools/ipa-ca-install
@@ -134,6 +134,10 @@ def main():
# Configure the CA if necessary
(CA, cs) = cainstance.install_replica_ca(config, postinstall=True)
+ if not CA:
+ # not a dogtag CA replica
+ sys.exit("Not a dogtag CA installation!")
+
# We need to ldap_enable the CA now that DS is up and running
CA.ldap_enable('CA', config.host_name, config.dirman_password,
util.realm_to_suffix(config.realm_name))