From 92828d3cf50e00fe75ebf3ec9e0edc8b9c8eae35 Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Wed, 1 Jul 2015 15:05:45 +0200 Subject: DNS: check if DNS package is installed Instead of separate checking of DNS required packages, we need just check if IPA DNS package is installed. https://fedorahosted.org/freeipa/ticket/4058 Reviewed-By: Martin Babinsky Reviewed-By: Petr Spacek Reviewed-By: Tomas Babej --- ipaserver/install/dnskeysyncinstance.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'ipaserver/install/dnskeysyncinstance.py') diff --git a/ipaserver/install/dnskeysyncinstance.py b/ipaserver/install/dnskeysyncinstance.py index eb6d07f01..7d1351ccc 100644 --- a/ipaserver/install/dnskeysyncinstance.py +++ b/ipaserver/install/dnskeysyncinstance.py @@ -30,12 +30,6 @@ softhsm_token_label = u'ipaDNSSEC' softhsm_slot = 0 replica_keylabel_template = u"dnssec-replica:%s" -def check_inst(): - if not os.path.exists(paths.DNSSEC_KEYFROMLABEL): - print ("Please install the 'bind-pkcs11-utils' package and start " - "the installation again") - return False - return True def dnssec_container_exists(fqdn, suffix, dm_password=None, ldapi=False, realm=None, autobind=ipaldap.AUTOBIND_DISABLED): -- cgit