From ca6947da6ffa363e8019941e21ea15787d17dd02 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 10 Jul 2015 12:58:19 -0400 Subject: Fix DNS records installation for replicas Ticket: https:/fedorahosted.org/freeipa/ticket/5116 Signed-off-by: Simo Sorce Reviewed-By: Martin Basti --- ipaserver/install/server/replicainstall.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py index a78eeb331..1ad291a1e 100644 --- a/ipaserver/install/server/replicainstall.py +++ b/ipaserver/install/server/replicainstall.py @@ -503,9 +503,9 @@ def install_check(installer): if options.setup_dns: dns.install_check(False, True, options, config.host_name) else: - installutils.get_server_ip_address(config.host_name, fstore, - not installer.interactive, False, - options.ip_addresses) + config.ips = installutils.get_server_ip_address( + config.host_name, fstore, not installer.interactive, False, + options.ip_addresses) # check connection if not options.skip_conncheck: -- cgit