f368903e47
- Rebase to 24.1.4 [RHEL-33439] - Resolves: RHEL-33439 (Update cloud-init on 24.1.4 for RHEL 10)
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 5745b21c9e9e47478b8920e3ccf5e82afffefcdf Mon Sep 17 00:00:00 2001
|
|
From: Brett Holman <brett.holman@canonical.com>
|
|
Date: Tue, 26 Mar 2024 15:00:41 -0500
|
|
Subject: [PATCH] feat: Use NetworkManager renderer by default in RHEL family
|
|
|
|
See upstream GH: https://github.com/canonical/cloud-init/pull/5089
|
|
|
|
(cherry picked from commit 97537494d95f733fce260beb5a2d465cccf9f6c7)
|
|
Signed-off-by: Ani Sinha <anisinha@redhat.com>
|
|
---
|
|
config/cloud.cfg.tmpl | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/config/cloud.cfg.tmpl b/config/cloud.cfg.tmpl
|
|
index 0e785dbe..a4701209 100644
|
|
--- a/config/cloud.cfg.tmpl
|
|
+++ b/config/cloud.cfg.tmpl
|
|
@@ -306,7 +306,7 @@ system_info:
|
|
activators: ['netplan', 'eni', 'network-manager', 'networkd']
|
|
{% elif is_rhel %}
|
|
network:
|
|
- renderers: ['sysconfig', 'eni', 'netplan', 'network-manager', 'networkd']
|
|
+ renderers: ['eni', 'netplan', 'network-manager', 'sysconfig', 'networkd']
|
|
{% endif %}
|
|
{% if variant == "photon" %}
|
|
# If set to true, cloud-init will not use fallback network config.
|