From 39ec75bef9077c0e520708ae22b9a9196b68105e Mon Sep 17 00:00:00 2001 From: Lynn Root Date: Dec 11 2012 10:04:12 +0000 Subject: Fixed the catch of the hostname option during ipa-server-install Originally ipa-server-install would still prompt for the hostname even if it's supplied in the initial installation command. Ticket: https://fedorahosted.org/freeipa/ticket/2692 --- diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index dcf7519..9bb4046 100755 --- a/install/tools/ipa-server-install +++ b/install/tools/ipa-server-install @@ -760,7 +760,7 @@ def main(): host_default = get_fqdn() try: - if options.unattended: + if options.unattended or options.host_name: verify_fqdn(host_default,options.no_host_dns) host_name = host_default else: