summaryrefslogtreecommitdiffstats
path: root/ipaserver/install
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2011-03-28 15:35:36 +0200
committerRob Crittenden <rcritten@redhat.com>2011-03-29 13:47:06 -0400
commitb29bd47273f83edad4f7c26c7ff89cf1fac8f668 (patch)
treecb5f8d93a2a24e2d3f3ae5e9e97493aee772ab80 /ipaserver/install
parent509c772f13539e1f95362f7c31e02658abf425b1 (diff)
downloadfreeipa-b29bd47273f83edad4f7c26c7ff89cf1fac8f668.tar.gz
freeipa-b29bd47273f83edad4f7c26c7ff89cf1fac8f668.tar.xz
freeipa-b29bd47273f83edad4f7c26c7ff89cf1fac8f668.zip
Fix wording of error message.
ticket 1009
Diffstat (limited to 'ipaserver/install')
-rw-r--r--ipaserver/install/installutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/installutils.py b/ipaserver/install/installutils.py
index 61d53a26f..3868c4d04 100644
--- a/ipaserver/install/installutils.py
+++ b/ipaserver/install/installutils.py
@@ -115,7 +115,7 @@ def verify_fqdn(host_name,no_host_dns=False):
for a in hostaddr:
if a[4][0] == '127.0.0.1' or a[4][0] == '::1':
- 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]))
+ raise RuntimeError("The IPA Server hostname must not 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:
resaddr = a[4][0]
revname = socket.gethostbyaddr(a[4][0])[0]