diff options
author | Martin Basti <mbasti@redhat.com> | 2015-11-30 15:34:31 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2015-12-22 14:05:55 +0100 |
commit | e622da3e1a25c05b77fed538634c284e68e2397f (patch) | |
tree | 240777f81538a16bbcade7d98e8df852d391b082 /ipaserver | |
parent | f0703d3c2a399012fa4cae0b856c08ff18b42463 (diff) | |
download | freeipa-e622da3e1a25c05b77fed538634c284e68e2397f.tar.gz freeipa-e622da3e1a25c05b77fed538634c284e68e2397f.tar.xz freeipa-e622da3e1a25c05b77fed538634c284e68e2397f.zip |
Remove unused code in server installer related to KRA
The first instance of KRA system should be allowed to install only by ipa-kra-install. This commit removes TODO and unneeded parts in code.
Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipaserver')
-rw-r--r-- | ipaserver/install/server/install.py | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/ipaserver/install/server/install.py b/ipaserver/install/server/install.py index 2da1e3d04..fbb20b02a 100644 --- a/ipaserver/install/server/install.py +++ b/ipaserver/install/server/install.py @@ -454,16 +454,12 @@ def install_check(installer): # We only set up the CA if the PKCS#12 options are not given. if options.dirsrv_cert_files: setup_ca = False - setup_kra = False else: setup_ca = True - # setup_kra is set to False until Dogtag 10.2 is available for IPA to - # consume. Until then users that want to install the KRA need to use - # ipa-install-kra - # TODO set setup_kra = True when Dogtag 10.2 is available - setup_kra = False options.setup_ca = setup_ca - options.setup_kra = setup_kra + + # first instance of KRA must be installed by ipa-kra-install + options.setup_kra = False print("=======================================" "=======================================") @@ -473,8 +469,6 @@ def install_check(installer): if setup_ca: print(" * Configure a stand-alone CA (dogtag) for certificate " "management") - if setup_kra: - print(" * Configure a stand-alone KRA (dogtag) for key storage") if not options.no_ntp: print(" * Configure the Network Time Daemon (ntpd)") print(" * Create and configure an instance of Directory Server") @@ -696,13 +690,6 @@ def install_check(installer): if setup_ca: ca.install_check(False, None, options) - if setup_kra: - try: - kra.install_check(api, None, options) - except RuntimeError as e: - print(str(e)) - sys.exit(1) - if options.setup_dns: dns.install_check(False, False, options, host_name) ip_addresses = dns.ip_addresses @@ -968,9 +955,6 @@ def install(installer): service.print_msg("Restarting the web server") http.restart() - if setup_kra: - kra.install(api, None, options) - # Set the admin user kerberos password ds.change_admin_password(admin_password) @@ -1032,8 +1016,6 @@ def install(installer): if setup_ca: print(("Be sure to back up the CA certificates stored in " + paths.CACERT_P12)) - if setup_kra: - print("and the KRA certificates stored in " + paths.KRACERT_P12) print("These files are required to create replicas. The password for " "these") print("files is the Directory Manager password") |