Edit the
install.sh file with a text editor, and modify
line 636 and
637 to include the
--nosignature option.
Example:
Before:
Line 634: if [ $(version "$RPM_MA") -ge $(version "$RPM_CURR") ]; then
Line 635: echo "System RPM is lower than MA build rpm"
Line 636: INSTALL_COMMAND="rpm --nodeps --nomd5 -ivh"
Line 637: UPGRADE_COMMAND="rpm --nodeps --nomd5 -Uvh"
After:
Line 634: if [ $(version "$RPM_MA") -ge $(version "$RPM_CURR") ]; then
Line 635:echo "System RPM is lower than MA build rpm"
Line 636: INSTALL_COMMAND="rpm --nodeps --nomd5 --nosignature -ivh"
Line 637: UPGRADE_COMMAND="rpm --nodeps --nomd5 --nosignature -Uvh"
After you implement the above modifications, save the file, and then attempt to install or upgrade the McAfee Agent again.