summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Nagy <mnagy@redhat.com>2010-04-06 19:47:21 +0200
committerMartin Nagy <mnagy@redhat.com>2010-04-19 14:21:08 +0200
commitafaa21052c213ae59b0b0858306ce1df2beb76c8 (patch)
treea19e76d43220d3f23d462a4026c75b4e2d1027b5
parent0ee68892980e1011232cdc23cd2ed5fd3d329972 (diff)
downloadfreeipa-afaa21052c213ae59b0b0858306ce1df2beb76c8.tar.gz
freeipa-afaa21052c213ae59b0b0858306ce1df2beb76c8.tar.xz
freeipa-afaa21052c213ae59b0b0858306ce1df2beb76c8.zip
Some more changes for DNS forwarders prompt
-rw-r--r--ipaserver/install/installutils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipaserver/install/installutils.py b/ipaserver/install/installutils.py
index df3c8916..54d8df32 100644
--- a/ipaserver/install/installutils.py
+++ b/ipaserver/install/installutils.py
@@ -151,9 +151,8 @@ def read_ip_address(host_name, fstore):
def read_dns_forwarders():
addrs = []
- if ipautil.user_input("Do you wish to configure DNS forwarders?", False):
- print "Please enter the IP addresses of DNS forwarders that you want to use."
- print "After you are done, enter a blank line to stop."
+ if ipautil.user_input("Do you want to configure DNS forwarders?", True):
+ print "Enter the IP address of DNS forwarder to use, or press Enter to finish."
while True:
ip = ipautil.user_input("Enter IP address for a DNS forwarder",
@@ -164,6 +163,7 @@ def read_dns_forwarders():
print "You cannot use localhost as a DNS forwarder"
continue
if not verify_ip_address(ip):
+ print "DNS forwarder %s not added" % ip
continue
print "DNS forwarder %s added" % ip