From 28bc54f91dfbd76887180fa67ceecb46977a4fb8 Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Wed, 2 Nov 2016 13:33:37 +0530 Subject: Provide user hint about IP address in IPA install With this fix, user will be notified about pressing enter to proceed with IPA installation procedure, if user has provided valid IP address previously. Fixes https://fedorahosted.org/freeipa/ticket/5949 Signed-off-by: Abhijeet Kasurde Reviewed-By: Martin Basti --- ipaserver/install/installutils.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ipaserver/install/installutils.py b/ipaserver/install/installutils.py index 9b445985f..9e509e461 100644 --- a/ipaserver/install/installutils.py +++ b/ipaserver/install/installutils.py @@ -267,9 +267,11 @@ def add_record_to_hosts(ip, host_name, conf_file=paths.HOSTS): def read_ip_addresses(): ips = [] - print("Enter the IP address to use, or press Enter to finish.") + msg_first = "Please provide the IP address to be used for this host name" + msg_other = "Enter an additional IP address, or press Enter to skip" while True: - ip = ipautil.user_input("Please provide the IP address to be used for this host name", allow_empty = True) + msg = msg_other if ips else msg_first + ip = ipautil.user_input(msg, allow_empty=True) if not ip: break try: -- cgit