7056e92461
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/freeipa.git#41b946dfeb35544f4011cf5777ba33fd98d11f72
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
From f9900ef2401070351353724ef92111ec541e67f0 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Bokovoy <abokovoy@redhat.com>
|
|
Date: Sat, 26 Sep 2020 16:30:58 +0300
|
|
Subject: [PATCH] Pre-populate IP addresses for the name server upgrades
|
|
|
|
Setting up resolv.conf in BIND instance expects IP addresses of the
|
|
server to be provided. This is done wiht BindInstance.setup() method
|
|
call. However, when reusing resolver setup during upgrade BIND instance
|
|
has no IP addresses configured and fails with an assert in
|
|
tasks.configure_dns_resolver().
|
|
|
|
Pass through the server's IP addresses during upgrade.
|
|
|
|
Fixes: https://pagure.io/freeipa/issue/8518
|
|
|
|
Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com>
|
|
---
|
|
ipaserver/install/server/upgrade.py | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/ipaserver/install/server/upgrade.py b/ipaserver/install/server/upgrade.py
|
|
index 332f8b251..144b340a4 100644
|
|
--- a/ipaserver/install/server/upgrade.py
|
|
+++ b/ipaserver/install/server/upgrade.py
|
|
@@ -1451,6 +1451,9 @@ def upgrade_bind(fstore):
|
|
# resolve1's stub resolver config file.
|
|
has_resolved_ipa_conf = os.path.isfile(paths.SYSTEMD_RESOLVED_IPA_CONF)
|
|
if not has_resolved_ipa_conf and detect_resolve1_resolv_conf():
|
|
+ ip_addresses = installutils.get_server_ip_address(
|
|
+ api.env.host, True, False, [])
|
|
+ bind.ip_addresses = ip_addresses
|
|
bind.setup_resolv_conf()
|
|
logger.info("Updated systemd-resolved configuration")
|
|
|
|
--
|
|
2.28.0
|
|
|