Remove bind configuration detected question

https://fedorahosted.org/freeipa/ticket/5351

Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
Gabe 2015-10-09 11:02:06 -06:00 committed by Martin Basti
parent 2f3450249d
commit d0bdc37679
2 changed files with 0 additions and 11 deletions

View File

@ -69,13 +69,6 @@ named_conf_include_re = re.compile(r'\s*include\s+"(?P<path>)"\s*;')
named_conf_include_template = "include \"%(path)s\";\n"
def check_inst(unattended):
if not unattended and os.path.exists(NAMED_CONF):
msg = "Existing BIND configuration detected, overwrite?"
return ipautil.user_input(msg, False)
return True
def create_reverse():
return ipautil.user_input("Do you want to configure the reverse zone?", True)

View File

@ -146,10 +146,6 @@ def install_check(standalone, replica, options, hostname):
False)):
sys.exit("Aborted")
# Check bind packages are installed
if not bindinstance.check_inst(options.unattended):
sys.exit("Aborting installation.")
if options.disable_dnssec_master:
_is_master()