We are testing for deployments of RHeL8. The team that is responsible for all software installations is running into this issue:
package swiagent is not installed
Installing package './data/swiagent-2.4.1.2023-45c09f7-centos-5.11-x64.rpm'
Verifying... ########################################
Preparing... ########################################
package swiagent-2.4.1.2023-45c09f7.x86_64 does not verify: no digest Package installation failed with exit code '1'
or
From our RHL engineer:
RHEL8 is not supported in the installer as is; but a small change can make it so. Nassim tried the install out of the box last night and it failed. I had him add the arguments "--nodigest --nofiledigest" inside the installer script and it passed.
This should be a really simple fix, but we need to fix it either in the tool that generates the files, or the Vendor needs to make the change to the tool and provide it to you.
The install command passed to rpm is "-Uvh" and is in line number around the 470's. It needs to be changed to "-Uvh --nodigest --nofiledigest"
These options are backwards compatible to RHEL7 and RHEL6, so no differentiation needs to be made between them as far as the installer is concerned.
Thank you