Skip to content

Commit 883110b

Browse files
committed
Remove the OpenSSL workaround
No longer required with the EPEL-related modifications
1 parent 33c2a2c commit 883110b

File tree

1 file changed

+0
-18
lines changed
  • repos/system_upgrade/cloudlinux/actors/clearpackageconflicts

1 file changed

+0
-18
lines changed

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

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -77,23 +77,6 @@ def alt_python37_handle(self):
7777
if self.problem_packages_installed(problem_packages):
7878
self.clear_problem_files(problem_files, problem_dirs)
7979

80-
def openssl_handle(self):
81-
"""
82-
openssl11-libs package from the EPEL repo is conflicting with the incoming openssl-libs package for EL8.
83-
https://access.redhat.com/solutions/6986997
84-
"""
85-
problem_packages = [
86-
"openssl11-libs"
87-
]
88-
problem_files = [
89-
"/usr/lib64/.libcrypto.so.1.1.1k.hmac",
90-
"/usr/lib64/.libssl.so.1.1.1k.hmac"
91-
]
92-
problem_dirs = []
93-
94-
if self.problem_packages_installed(problem_packages):
95-
self.clear_problem_files(problem_files, problem_dirs)
96-
9780
def lua_cjson_handle(self):
9881
"""
9982
lua-cjson package is conflicting with the incoming lua-cjson package for EL8.
@@ -116,4 +99,3 @@ def lua_cjson_handle(self):
11699
def process(self):
117100
self.rpm_lookup = {rpm for rpm in self.consume(InstalledRPM)}
118101
self.alt_python37_handle()
119-
self.openssl_handle()

0 commit comments

Comments
 (0)