summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/server/install.py
diff options
context:
space:
mode:
authorFraser Tweedale <ftweedal@redhat.com>2015-06-05 02:57:48 -0400
committerPetr Vobornik <pvoborni@redhat.com>2015-06-05 19:12:46 +0200
commit8b3bc99a737edb9178e115c188d60d963f73e50c (patch)
tree22a9afe1ed2a78685bbd3c231b73e1c2c1f2e3fd /ipaserver/install/server/install.py
parentce33f82cfe528c17d3a1367172bb1475fe169b25 (diff)
downloadfreeipa-8b3bc99a737edb9178e115c188d60d963f73e50c.tar.gz
freeipa-8b3bc99a737edb9178e115c188d60d963f73e50c.tar.xz
freeipa-8b3bc99a737edb9178e115c188d60d963f73e50c.zip
Import profiles earlier during install
Currently, IPA certificate profile import happens at end of install. Certificates issuance during the install process does work but uses an un-customised caIPAserviceCert profile, resulting in incorrect subject DNs and missing extensions. Furthermore, the caIPAserviceCert profile shipped with Dogtag will eventually be removed. Move the import of included certificate profiles to the end of the cainstance deployment phase, prior to the issuance of DS and HTTP certificates. Part of: https://fedorahosted.org/freeipa/ticket/4002 Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipaserver/install/server/install.py')
-rw-r--r--ipaserver/install/server/install.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/ipaserver/install/server/install.py b/ipaserver/install/server/install.py
index 955e4cc11..999766d67 100644
--- a/ipaserver/install/server/install.py
+++ b/ipaserver/install/server/install.py
@@ -906,9 +906,6 @@ def install(options):
service.print_msg("Restarting the certificate server")
ca.restart(dogtag.configured_constants().PKI_INSTANCE_NAME)
- service.print_msg("Importing certificate profiles")
- cainstance.import_included_profiles()
-
if options.setup_dns:
api.Backend.ldap2.connect(autobind=True)
dns.install(False, False, options)