Skip to content

Commit 1e718b2

Browse files
committed
temporary disable actors that are not compatible with cl9
1 parent e93450f commit 1e718b2

File tree

3 files changed

+6
-2
lines changed
  • repos/system_upgrade
    • cloudlinux/actors
    • el8toel9/actors/checkdeprecatedrpmsignature

3 files changed

+6
-2
lines changed

repos/system_upgrade/cloudlinux/actors/checkrhnclienttools/actor.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ class CheckRhnClientToolsVersion(Actor):
2727

2828
@run_on_cloudlinux
2929
def process(self):
30+
# todo: (CLOS-3202) update the actor
31+
return
32+
3033
title, summary, remediation = None, None, None
3134
# ex:
3235
# Version : 2.0.2

repos/system_upgrade/cloudlinux/actors/clearpackageconflicts/actor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,6 @@ def lua_cjson_handle(self):
9797

9898
@run_on_cloudlinux
9999
def process(self):
100-
self.rpm_lookup = {rpm for rpm in self.consume(InstalledRPM)}
100+
# todo: (CLOS-3205) investigate why set is needed here
101+
self.rpm_lookup = [rpm for rpm in self.consume(InstalledRPM)]
101102
self.alt_python37_handle()

repos/system_upgrade/el8toel9/actors/checkdeprecatedrpmsignature/actor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ class CheckDeprecatedRPMSignature(Actor):
3737
tags = (IPUWorkflowTag, ChecksPhaseTag)
3838

3939
def process(self):
40-
# todo: resign all packages and turn the check back on
40+
# todo: (CLOS-3206) resign all packages and turn the check back on
4141
# checkdeprecatedrpmsignature.process()
4242
pass

0 commit comments

Comments
 (0)