- Improve set_systemd_services_states logging - [IPU 7 -> 8] Fix detection of bootable device on RAID - Fix detection of valid sshd config with internal-sftp subsystem in Leapp - Handle a false positive GPG check error when TargetUserSpaceInfo is missing - Fix failing "update-ca-trust" command caused by missing util-linux package - Improve report when a system is unsupported - Fix handling of versions in RHUI configuration for ELS and SAP upgrades - Add missing RHUI GCP config info for RHEL for SAP - Resolves: RHEL-33902, RHEL-30573, RHEL-43978, RHEL-39046, RHEL-39047, RHEL-39049
27 lines
1014 B
Diff
27 lines
1014 B
Diff
From f645c520a6bd7ce53e7db2e2a9f58f2554141695 Mon Sep 17 00:00:00 2001
|
|
From: mhecko <mhecko@redhat.com>
|
|
Date: Fri, 7 Jun 2024 10:42:01 +0200
|
|
Subject: [PATCH 57/92] fix rhui package collection
|
|
|
|
---
|
|
repos/system_upgrade/common/libraries/rhui.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/repos/system_upgrade/common/libraries/rhui.py b/repos/system_upgrade/common/libraries/rhui.py
|
|
index 28f1aeee..dbb3d71e 100644
|
|
--- a/repos/system_upgrade/common/libraries/rhui.py
|
|
+++ b/repos/system_upgrade/common/libraries/rhui.py
|
|
@@ -594,7 +594,8 @@ def get_all_known_rhui_pkgs_for_current_upg():
|
|
known_pkgs = set()
|
|
for setup_family in RHUI_SETUPS.values():
|
|
for setup in setup_family:
|
|
- if setup.os_version not in upg_major_versions:
|
|
+ setup_major = str(setup.os_version[0])
|
|
+ if setup_major not in upg_major_versions:
|
|
continue
|
|
known_pkgs.update(setup.clients)
|
|
known_pkgs.add(setup.leapp_pkg)
|
|
--
|
|
2.42.0
|
|
|