PDA

View Full Version : Dependency issue, CentOS 4.1 / iworx cp install


john-patternrec
08-26-2005, 09:43 AM
Hello.

I am running into an error when installing interworx control panel using the iworx-cp-install.sh script.

It says the following:
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Package httpd-devel.i386 0:2.0.54-100.rhe4x.iworx set to be updated
---> Package httpd.i386 0:2.0.54-100.rhe4x.iworx set to be updated
---> Package mod_ssl.i386 1:2.0.52-12.1.ent.centos4 set to be updated
--> Running transaction check
--> Processing Dependency: httpd = 2.0.52-12.1.ent.centos4 for package: mod_ssl
--> Finished Dependency Resolution
Error: Missing Dependency: httpd = 2.0.52-12.1.ent.centos4 is needed by package mod_ssl

The issue is that I -do- have apache 2.0.52-12.1 installed, but it isn't seeing it for some reason. Can anyone point me in the right direction?

--
John

IWorx-Dustin
08-26-2005, 01:00 PM
Hi John-

Try changing the following in the install script (in the httpdinstall function):

From:
yum $yumargs \
--exclude httpd-iworx \
--exclude subversion \
install \
httpd \
httpd-devel \
mod_ssl

To:
yum $yumargs \
--exclude httpd-iworx \
--exclude subversion \
install \
httpd \
httpd-devel \
mod_ssl-2.0.54

(Note the version number on mod_ssl)

--Dustin

john-patternrec
08-26-2005, 01:33 PM
Thanks, Dustin. That did the trick. I appreciate your assistance.

--
john