forked from rpms/leapp-repository
75c9028095
- Enable new upgrade path for RHEL 8.10 -> RHEL 9.4 (including RHEL with SAP HANA) - Introduce generic transition of systemd services states during the IPU - Introduce possibility to upgrade with local repositories - Improve possibilities of upgrade when a proxy is configured in DNF configutation file - Fix handling of symlinks under /etc/pki when managing certificates - Fix the upgrade with custom https repositories - Default to the NO_RHSM mode when subscription-manager is not installed - Detect customized configuration of dynamic linker - Drop the invalid `tuv` target channel for the --channel option - Fix the issue of going out of bounds in the isccfg parser - Fix traceback when saving the rhsm facts results and the /etc/rhsm/facts directory doesn’t exist yet - Load all rpm repository substitutions that dnf knows about, not just "releasever" only - Simplify handling of upgrades on systems using RHUI, reducing the maintenance burden for cloud providers - Detect possible unexpected RPM GPG keys has been installed during RPM transaction - Resolves: RHEL-16729
69 lines
3.1 KiB
Diff
69 lines
3.1 KiB
Diff
From 64ec2ec60eac7abd4910c5b2a1a43794d3df11cf Mon Sep 17 00:00:00 2001
|
|
From: Evgeni Golov <evgeni@golov.de>
|
|
Date: Sat, 4 Nov 2023 19:54:19 +0100
|
|
Subject: [PATCH 25/38] be less strict when figuring out major version in
|
|
initrd
|
|
|
|
We only care for the major part of the version, so it's sufficient to
|
|
grep without the dot, which is not present on CentOS initrd.
|
|
|
|
CentOS Stream 8:
|
|
|
|
VERSION="8 dracut-049-224.git20230330.el8"
|
|
VERSION_ID=049-224.git20230330.el8
|
|
|
|
CentOS Stream 9:
|
|
|
|
VERSION="9 dracut-057-38.git20230725.el9"
|
|
VERSION_ID="9"
|
|
|
|
RHEL 8.8:
|
|
|
|
VERSION="8.8 (Ootpa) dracut-049-223.git20230119.el8"
|
|
VERSION_ID=049-223.git20230119.el8
|
|
|
|
RHEL 9.2:
|
|
|
|
VERSION="9.2 (Plow) dracut-057-21.git20230214.el9"
|
|
VERSION_ID="9.2"
|
|
|
|
Ideally, we would just use the major part of VERSION_ID, but this is set
|
|
to the underlying OS'es VERSION_ID only since dracut 050 [1] and EL8
|
|
ships with 049.
|
|
|
|
[1] https://github.com/dracutdevs/dracut/commit/72ae1c4fe73c5637eb8f6843b9a127a6d69469d6
|
|
---
|
|
.../files/dracut/85sys-upgrade-redhat/do-upgrade.sh | 2 +-
|
|
.../files/dracut/90sys-upgrade/initrd-system-upgrade-generator | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/repos/system_upgrade/common/actors/commonleappdracutmodules/files/dracut/85sys-upgrade-redhat/do-upgrade.sh b/repos/system_upgrade/common/actors/commonleappdracutmodules/files/dracut/85sys-upgrade-redhat/do-upgrade.sh
|
|
index c181c5cf..95be87b5 100755
|
|
--- a/repos/system_upgrade/common/actors/commonleappdracutmodules/files/dracut/85sys-upgrade-redhat/do-upgrade.sh
|
|
+++ b/repos/system_upgrade/common/actors/commonleappdracutmodules/files/dracut/85sys-upgrade-redhat/do-upgrade.sh
|
|
@@ -9,7 +9,7 @@ type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh
|
|
|
|
get_rhel_major_release() {
|
|
local os_version
|
|
- os_version=$(grep -o '^VERSION="[0-9][0-9]*\.' /etc/initrd-release | grep -o '[0-9]*')
|
|
+ os_version=$(grep -o '^VERSION="[0-9][0-9]*' /etc/initrd-release | grep -o '[0-9]*')
|
|
[ -z "$os_version" ] && {
|
|
# This should not happen as /etc/initrd-release is supposed to have API
|
|
# stability, but check is better than broken system.
|
|
diff --git a/repos/system_upgrade/common/actors/commonleappdracutmodules/files/dracut/90sys-upgrade/initrd-system-upgrade-generator b/repos/system_upgrade/common/actors/commonleappdracutmodules/files/dracut/90sys-upgrade/initrd-system-upgrade-generator
|
|
index 5cc6fd92..fe81626f 100755
|
|
--- a/repos/system_upgrade/common/actors/commonleappdracutmodules/files/dracut/90sys-upgrade/initrd-system-upgrade-generator
|
|
+++ b/repos/system_upgrade/common/actors/commonleappdracutmodules/files/dracut/90sys-upgrade/initrd-system-upgrade-generator
|
|
@@ -1,7 +1,7 @@
|
|
#!/bin/sh
|
|
|
|
get_rhel_major_release() {
|
|
- _os_version=$(cat /etc/initrd-release | grep -o '^VERSION="[0-9][0-9]*\.' | grep -o '[0-9]*')
|
|
+ _os_version=$(cat /etc/initrd-release | grep -o '^VERSION="[0-9][0-9]*' | grep -o '[0-9]*')
|
|
[ -z "$_os_version" ] && {
|
|
# This should not happen as /etc/initrd-release is supposed to have API
|
|
# stability, but check is better than broken system.
|
|
--
|
|
2.41.0
|
|
|