From ec92108de4331f01b800e9d88bc1b52a90ed9358 Mon Sep 17 00:00:00 2001 From: Peter Mocary Date: Mon, 10 Nov 2025 09:02:26 +0100 Subject: [PATCH 68/69] define fallback entries in the upgrade paths map for AlmaLinux The upgrade paths map contains fallback entries which make sure a target upgrade version is found regardless of the source minor version. This patch defines fallback entries for AlmaLinux. Jira: RHEL-120252 --- repos/system_upgrade/common/files/upgrade_paths.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/repos/system_upgrade/common/files/upgrade_paths.json b/repos/system_upgrade/common/files/upgrade_paths.json index 61bb73c0..39fbe6c1 100644 --- a/repos/system_upgrade/common/files/upgrade_paths.json +++ b/repos/system_upgrade/common/files/upgrade_paths.json @@ -33,8 +33,10 @@ }, "almalinux": { "default": { - "8.10": ["9.0", "9.1", "9.2", "9.3", "9.4", "9.5", "9.6", "9.7","9.8"], - "9.7": ["10.0", "10.1"] + "8.10": ["9.0", "9.1", "9.2", "9.3", "9.4", "9.5", "9.6", "9.7", "9.8"], + "9.7": ["10.0", "10.1"], + "8": ["9.0", "9.1", "9.2", "9.3", "9.4", "9.5", "9.6", "9.7", "9.8"], + "9": ["10.0", "10.1"] } } } -- 2.51.1