• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Errors with yum update with art repository

E

ergos

Guest
Hi all,
I have this error with a yum update:

Error: Missing Dependency: psa-hotfix2 >= 8.0.1 is needed by package psa-horde

and if I do a yum list psa-hotfix2 I get:

psa-hotfix2.i586 8.0.1-centos4.2.build8 installed

any idea about where I am wrong and what I can do to solve this?

Thanks in advance,
Filippo
 
Try running 'rpm -qa | grep psa-hotfix2'

That will show you if it is actually installed. You may also try going into the RPMs that are on your server and forcing the install of that RPM.

-bash-3.00# pwd
/root/psa/PSA_8.0.1/dist-rpm-FedoraCore-4-i386/base
-bash-3.00# ls | grep psa-hotfix2
psa-hotfix2-8.0.1-fc4.build80060713.16.i586.rpm
-bash-3.00# rpm -uvh --force psa-hotfix2-8.0.1-fc4.build80060713.16.i586.rpm

Of course, your rpm file may be named differently, as may the path that it is in because of a different OS. But for the most part it will be:

/root/psa/PSA_8.0.1/dist-rpm-[OS]/base/psa-hotfix2-8.0.1-[OS].build80060713.16.[ARCH].rpm

After you force the install of that, try yum again.
 
Originally posted by ergos
Hi all,
I have this error with a yum update:

Error: Missing Dependency: psa-hotfix2 >= 8.0.1 is needed by package psa-horde

and if I do a yum list psa-hotfix2 I get:

psa-hotfix2.i586 8.0.1-centos4.2.build8 installed

any idea about where I am wrong and what I can do to solve this?

Thanks in advance,
Filippo

I got around this by doing the following:

yum remove psa-hotfix2.i586

then

yum update

and everything worked fine ...

Hope this helps.

Luke
www.catch22media.com
 
Back
Top