I have two web servers, a production web server and a backup web server.
After running a rpm -qa
on the two servers, I noticed some package discrepancies.
It seems like, someone ran a yum update
at some point in the past on the production server, but did not run it on the backup web server.
I would like to install a few very specific packages on the backup web server.
for example : yum install bind-libs-9.8.2-0.17.rc1.el6_4.5.x86_64
If I run yum install bind-libs-9.8.2-0.17.rc1.el6_4.5.x86_64
it seems to try and find the newest package that matches, and not the specific package I would like.
...
---> Package bind-utils.x86_64 32:9.8.2-0.17.rc1.el6_4.4 will be updated
---> Package bind-utils.x86_64 32:9.8.2-0.17.rc1.el6_4.6 will be an update
...
======================================================================================
Package Arch Version Repository Size
======================================================================================
Updating for dependencies:
bind-libs x86_64 32:9.8.2-0.17.rc1.el6_4.6 updates 878 k
...
Is there a way to install only the package I would like and nothing newer?