diff options
author | Rob Crittenden <rcritten@redhat.com> | 2008-05-30 14:40:25 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2008-05-30 15:44:56 -0400 |
commit | e935287f6ea8b9b6ae8c33a074ecada156e058c9 (patch) | |
tree | 12eddec3322f894a1f31f81992f4d100363547f2 /ipa-client | |
parent | 2d588a82543f0a29da5f4dbc54767516bce410df (diff) | |
download | freeipa-e935287f6ea8b9b6ae8c33a074ecada156e058c9.tar.gz freeipa-e935287f6ea8b9b6ae8c33a074ecada156e058c9.tar.xz freeipa-e935287f6ea8b9b6ae8c33a074ecada156e058c9.zip |
Try to clear up messages prompting for domain and IPA server when DNS discovery fails to find them.
Diffstat (limited to 'ipa-client')
-rw-r--r-- | ipa-client/ipa-install/ipa-client-install | 8 |
1 files changed, 4 insertions, 4 deletions
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(): |