Skip to content

Commit

Permalink
Remove the OpenSSL workaround
Browse files Browse the repository at this point in the history
No longer required with the EPEL-related modifications
  • Loading branch information
prilr committed Jul 1, 2024
1 parent 33c2a2c commit 883110b
Showing 1 changed file with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,23 +77,6 @@ def alt_python37_handle(self):
if self.problem_packages_installed(problem_packages):
self.clear_problem_files(problem_files, problem_dirs)

def openssl_handle(self):
"""
openssl11-libs package from the EPEL repo is conflicting with the incoming openssl-libs package for EL8.
https://access.redhat.com/solutions/6986997
"""
problem_packages = [
"openssl11-libs"
]
problem_files = [
"/usr/lib64/.libcrypto.so.1.1.1k.hmac",
"/usr/lib64/.libssl.so.1.1.1k.hmac"
]
problem_dirs = []

if self.problem_packages_installed(problem_packages):
self.clear_problem_files(problem_files, problem_dirs)

def lua_cjson_handle(self):
"""
lua-cjson package is conflicting with the incoming lua-cjson package for EL8.
Expand All @@ -116,4 +99,3 @@ def lua_cjson_handle(self):
def process(self):
self.rpm_lookup = {rpm for rpm in self.consume(InstalledRPM)}
self.alt_python37_handle()
self.openssl_handle()

0 comments on commit 883110b

Please sign in to comment.