From ae641ed31b45a19def11273b13d41658ed0580ce Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 8 May 2008 17:13:15 -0400 Subject: Include information on where to look if a hostname resolves to localhost. 442812 --- ipa-server/ipaserver/installutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipa-server') diff --git a/ipa-server/ipaserver/installutils.py b/ipa-server/ipaserver/installutils.py index 37ee5d6ab..5eca59714 100644 --- a/ipa-server/ipaserver/installutils.py +++ b/ipa-server/ipaserver/installutils.py @@ -58,7 +58,7 @@ def verify_fqdn(host_name): for a in hostaddr: if a[4][0] == '127.0.0.1' or a[4][0] == '::1': - raise RuntimeError("The IPA Server hostanme cannot resolve to localhost (%s), a routable IP address must be used." % a[4][0]) + raise RuntimeError("The IPA Server hostname cannot resolve to localhost (%s). A routable IP address must be used. Check /etc/hosts to see if %s is an alias for %s" % (a[4][0], host_name, a[4][0])) try: revname = socket.gethostbyaddr(a[4][0])[0] except: -- cgit