Lampwrights Forum

Lampwrights Forum (http://www.lampwrights.com/index.php)
-   Linux (http://www.lampwrights.com/forumdisplay.php?f=1)
-   -   Excluding packages with Yum (http://www.lampwrights.com/showthread.php?t=40)

Jeff 01-12-2011 06:42 PM

Excluding packages with Yum
 
Many Linux servers are configured to update automatically. I never liked this, but some clients want it this way. You can however at least configure yum to exclude some packages from automatically updating. For my, I want to BE THERE when PHP, Kernel, Apache, or MySQL updates. Edit the /etc/yum.conf file and add this line at the end (if it isn't there):

Code:

exclude=kernel* php* httpd* MySQL* mysql*
Also, you may want to make sure assumeyes is disabled:

Code:

assumeyes=0
That will keep it from updating/installing packages without confirming first.

When it comes time to update manually, just do it like so:

Code:

yum update --disableexcludes=all
Hope that little trick helps!


All times are GMT -4. The time now is 05:49 AM.

Powered by vBulletin® Version 3.8.8 Beta 4
Copyright ©2000 - 2024, vBulletin Solutions, Inc.