From 39ec75bef9077c0e520708ae22b9a9196b68105e Mon Sep 17 00:00:00 2001 From: Lynn Root Date: Tue, 13 Nov 2012 12:01:35 -0500 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 --- install/tools/ipa-server-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index dcf75190..9bb40461 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: -- cgit