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
27 lines
805 B
Diff
27 lines
805 B
Diff
From fa0773ddd5d27762d10ad769c119ef87b1684e5e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
|
Date: Thu, 31 Aug 2023 13:04:34 +0200
|
|
Subject: [PATCH 13/38] Avoid warnings on python2
|
|
|
|
Use python3 compatible print function
|
|
---
|
|
repos/system_upgrade/el7toel8/libraries/isccfg.py | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/repos/system_upgrade/el7toel8/libraries/isccfg.py b/repos/system_upgrade/el7toel8/libraries/isccfg.py
|
|
index 1d29ff21..45baba0b 100644
|
|
--- a/repos/system_upgrade/el7toel8/libraries/isccfg.py
|
|
+++ b/repos/system_upgrade/el7toel8/libraries/isccfg.py
|
|
@@ -2,6 +2,8 @@
|
|
#
|
|
# Simplified parsing of bind configuration, with include support and nested sections.
|
|
|
|
+from __future__ import print_function
|
|
+
|
|
import re
|
|
import string
|
|
|
|
--
|
|
2.41.0
|
|
|