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