forked from rpms/leapp-repository
39 lines
1.8 KiB
Diff
39 lines
1.8 KiB
Diff
From 1be52a6430b878bd4984bcf2577f3c7c847d2e48 Mon Sep 17 00:00:00 2001
|
|
From: Joe Ashcraft <joeashcraft@gmail.com>
|
|
Date: Tue, 4 Mar 2025 16:31:14 -0600
|
|
Subject: [PATCH 02/37] fix - spell AllowZoneDrifting correctly
|
|
|
|
resolves #1354
|
|
---
|
|
.../actors/firewalldcheckallowzonedrifting/actor.py | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/repos/system_upgrade/el8toel9/actors/firewalldcheckallowzonedrifting/actor.py b/repos/system_upgrade/el8toel9/actors/firewalldcheckallowzonedrifting/actor.py
|
|
index 0002f6aa..6f1c8f43 100644
|
|
--- a/repos/system_upgrade/el8toel9/actors/firewalldcheckallowzonedrifting/actor.py
|
|
+++ b/repos/system_upgrade/el8toel9/actors/firewalldcheckallowzonedrifting/actor.py
|
|
@@ -7,9 +7,9 @@ from leapp.tags import ChecksPhaseTag, IPUWorkflowTag
|
|
|
|
class FirewalldCheckAllowZoneDrifting(Actor):
|
|
"""
|
|
- This actor will check if AllowZoneDrifiting=yes in firewalld.conf. This
|
|
+ This actor will check if AllowZoneDrifting=yes in firewalld.conf. This
|
|
option has been removed in RHEL-9 and behavior is as if
|
|
- AllowZoneDrifiting=no.
|
|
+ AllowZoneDrifting=no.
|
|
"""
|
|
|
|
name = 'firewalld_check_allow_zone_drifting'
|
|
@@ -37,7 +37,7 @@ class FirewalldCheckAllowZoneDrifting(Actor):
|
|
reporting.Summary('Firewalld has enabled configuration option '
|
|
'"{conf_key}" which has been removed in RHEL-9. '
|
|
'New behavior is as if "{conf_key}" was set to "no".'.format(
|
|
- conf_key='AllowZoneDrifiting')),
|
|
+ conf_key='AllowZoneDrifting')),
|
|
reporting.Severity(reporting.Severity.HIGH),
|
|
reporting.Groups([reporting.Groups.SANITY, reporting.Groups.FIREWALL]),
|
|
reporting.Groups([reporting.Groups.INHIBITOR]),
|
|
--
|
|
2.49.0
|
|
|