From e935287f6ea8b9b6ae8c33a074ecada156e058c9 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 30 May 2008 14:40:25 -0400 Subject: Try to clear up messages prompting for domain and IPA server when DNS discovery fails to find them. --- ipa-client/ipa-install/ipa-client-install | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipa-client/ipa-install/ipa-client-install') diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install index b096d9b99..2151e2da9 100644 --- a/ipa-client/ipa-install/ipa-client-install +++ b/ipa-client/ipa-install/ipa-client-install @@ -140,10 +140,10 @@ def main(): elif options.unattended: return ret else: - print "Failed to determine your DNS domain (DNS misconfigured?)" + print "DNS discovery failed to determine your DNS domain" cli_domain = "" while cli_domain == "": - cli_domain = raw_input("Please provide your domain name (ex: example.com): ") + cli_domain = raw_input("Please provide the domain name of your IPA server (ex: example.com): ") ret = ds.search(domain=cli_domain, server=options.server) if not cli_domain: if ds.getDomainName(): @@ -157,10 +157,10 @@ def main(): elif options.unattended: return ret else: - print "Failed to find the IPA Server (DNS misconfigured?)" + print "DNS discovery failed to find the IPA Server" cli_server = "" while cli_server == "": - cli_server = raw_input("Please provide your server name (ex: ipa.example.com): ") + cli_server = raw_input("Please provide your IPA server name (ex: ipa.example.com): ") ret = ds.search(domain=cli_domain, server=cli_server) if not cli_server: if ds.getServerName(): -- cgit