From 3ea8dabeb9e21b255bb75287743a2bbb350f61bd Mon Sep 17 00:00:00 2001 From: Brian Cook Date: Thu, 14 Feb 2013 08:49:17 -0800 Subject: Add DNS Setup Prompt to Install Currently the only way to setup integrated DNS is by passing --setup-dns to ipa-server-install. This patch modifies install so that if --setup-dns is not passed, the user is asked if they want to configure integrated dns. http://fedorahosted.org/freeipa/ticket/2575 --- install/tools/ipa-server-install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index 57511c214..479894b36 100755 --- a/install/tools/ipa-server-install +++ b/install/tools/ipa-server-install @@ -750,6 +750,11 @@ def main(): admin_password = "" reverse_zone = None + if not options.setup_dns and not options.unattended: + if ipautil.user_input("Do you want to configure integrated DNS (BIND)?", False): + options.setup_dns = True + print "" + # check bind packages are installed if options.setup_dns: if not bindinstance.check_inst(options.unattended): -- cgit