From d1506d6a44b4c4b85772cd0764113f2b20a147fe Mon Sep 17 00:00:00 2001
From: Stanislav Laznicka <slaznick@redhat.com>
Date: Fri, 6 Apr 2018 09:10:20 +0200
Subject: [PATCH] replica-install: pass --ip-address to client install
In replica DL1 installation, the --ip-address option was not passed
down to the ipa-client-install script (when not promoting client).
This resulted in creating DNS records for all of the host's interface
IP adresses instead of just those specified.
This patch passes all the --ip-address options down to the client
installation script.
https://pagure.io/freeipa/issue/7405
Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
---
ipaserver/install/server/replicainstall.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py
index 5a37aea0ac913d5c9cb88346345ba5760a9e923d..42e4615ad2dc1f604f5d8d14f8e57e3e4674bcb9 100644
--- a/ipaserver/install/server/replicainstall.py
+++ b/ipaserver/install/server/replicainstall.py
@@ -942,6 +942,10 @@ def ensure_enrolled(installer):
args.append("--mkhomedir")
if installer.force_join:
args.append("--force-join")
+ if installer.ip_addresses:
+ for ip in installer.ip_addresses:
+ # installer.ip_addresses is of type [CheckedIPAddress]
+ args.extend(("--ip-address", str(ip)))
try:
# Call client install script
--
2.14.3