diff options
author | Ade Lee <alee@redhat.com> | 2014-09-01 22:49:54 -0400 |
---|---|---|
committer | Petr Viktorin <pviktori@redhat.com> | 2014-09-15 10:58:29 +0200 |
commit | 9ca5a4e42084ba43e106fa3be9dac9965216e710 (patch) | |
tree | 31a674019d023a13062658a58929844e5c8e4a7d /ipaserver/install/ipa_kra_install.py | |
parent | 4fac4f4cf65b54bc0b194928341b31e3c67d63a5 (diff) | |
download | freeipa-9ca5a4e42084ba43e106fa3be9dac9965216e710.tar.gz freeipa-9ca5a4e42084ba43e106fa3be9dac9965216e710.tar.xz freeipa-9ca5a4e42084ba43e106fa3be9dac9965216e710.zip |
Re-enable uninstall feature for ipa-kra-install
The underlying Dogtag issue (Dogtag ticket 1113) has been fixed.
We can therefore re-enable the uninstall option for ipa-kra-install.
Also, fixes an incorrect path in the ipa-pki-proxy.conf, and adds
a debug statement to provide status to the user when an uninstall
is done. Also, re-added the no_host_dns option which is used when
unpacking a replica file.
Part of the work for: https://fedorahosted.org/freeipa/ticket/3872
Reviewed-By: Petr Viktorin <pviktori@redhat.com>
Diffstat (limited to 'ipaserver/install/ipa_kra_install.py')
-rw-r--r-- | ipaserver/install/ipa_kra_install.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/ipaserver/install/ipa_kra_install.py b/ipaserver/install/ipa_kra_install.py index 2c4f2dcaa..207b8c412 100644 --- a/ipaserver/install/ipa_kra_install.py +++ b/ipaserver/install/ipa_kra_install.py @@ -49,6 +49,11 @@ class KRAInstall(admintool.AdminTool): super(KRAInstall, cls).add_options(parser, debug_option=True) parser.add_option( + "--no-host-dns", dest="no_host_dns", action="store_true", + default=False, + help="Do not use DNS for hostname lookup during installation") + + parser.add_option( "-p", "--password", dest="password", sensitive=True, help="Directory Manager (existing master) password") @@ -115,14 +120,6 @@ class KRAUninstaller(KRAInstall): super(KRAUninstaller, self).run() dogtag_constants = dogtag.configured_constants() - # temporarily disable uninstall until Dogtag ticket: - # https://fedorahosted.org/pki/ticket/1113 is fixed - # TODO(alee) remove this once the above ticket is fixed - raise admintool.ScriptError( - "Uninstall is temporarily disabled. To uninstall, please " - "use ipa-server-install --uninstall" - ) - kra_instance = krainstance.KRAInstance( api.env.realm, dogtag_constants=dogtag_constants) kra_instance.stop_tracking_certificates(dogtag_constants) |