The yum command line tool is used to install and update software packages under RHEL / CentOS Linux server. I know how to apply updates using yum update command line, but I'd like to use cron to manually update packages where appropriate. How do I configure yum to install software patches / updates automatically with cron?
You can use yum-updatesd service provided with CentOS / RHEL servers. However, this service provides a few overheads. You can create daily or weekly updates with the following shell script. Create
- /etc/cron.daily/yumupdate.sh to apply updates one a day.
- /etc/cron.weekly/yumupdate.sh to apply updates once a week.
Sample shell script to update system
A shell script that instructs yum to update any packages it finds via cron:
#!/bin/bash YUM=/usr/bin/yum $YUM -y -R 120 -d 0 -e 0 update yum $YUM -y -R 10 -e 0 -d 0 update
(Code listing -01: /etc/cron.daily/yumupdate.sh)
Where,
- First command will update yum itself and next will apply system updates.
- -R 120 : Sets the maximum amount of time yum will wait before performing a command
- -e 0 : Sets the error level to 0 (range 0 - 10). 0 means print only critical errors about which you must be told.
- -d 0 : Sets the debugging level to 0 - turns up or down the amount of things that are printed. (range: 0 - 10).
- -y : Assume yes; assume that the answer to any question which would be asked is yes.
Make sure you setup executable permission:
# chmod +x /etc/cron.daily/yumupdate.sh
Recommend readings:
- yum man page
- yum command: Update / Install Packages under Redhat Enterprise / CentOS Linux Version 5.x
- How do I add jobs to cron under Linux or UNIX oses?
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 13 comments… read them below or add one }
Good info. Thanks!
This is where yum-updatesd is for. Please take a look at:
/etc/yum/yum-updatesd.conf
for configuration parameters. Updates will automatically be applied with:
do_update = yes
Best Regards
Marcus
As Marcus said, yum-updatesd already does this !
And as it’s not yet clearly said, auto updating is not recommended at all on production servers !!!
Only do this on test or dev servers… or your linux desktop.
Best regards
Patrick
I use script called yum-check from CentOS wiki. It works great, its called from cron.daily and if there is a updates, send a mail to me. You can set only notify, download or direct download and install updates.
http://wiki.centos.org/YumCheckOrInstallUpdates
True, yum-updatesd already does handle ad hoc updates defined by the run_interval and updaterefresh intervals. My question is how do you define a specific time for updates. e.g. in production you want all servers to update say Friday, 3:00am, or nightly at 2:00am. Apart from cron how is that done?
You have three options:
1) Write your own tool and push updates on all hosts using custome programming and cron jobs.
2) Use patch managment software such as PatchLink Update Server, Novell ZENworks Linux Management, RHEL satellite/Spacewalk etc.
3) Use other open source system management tools such as Chef, Puppet, and, Cfengine.
Thanks Vivek, very helpful!
Why -R is equal to 120? Why yum will wait 120 minutes to start ?
thanks
Patric says: updating is not recommended at all on production servers
I would like to make critical updates (bug fixes) on my production servers daily.
Is it not good idea?
How to organize it without updating packages to new versions?
Thank you for comments.
Bravo!!! You have taken a farufel task and made it come out smooth. WELL DONE TUTORIAL!
Nice tutorial. BTW, why isn’t it recommended to auto-update? I can choose the repos and sources I want to install, and if I have a server for which security is critical – why not keep it up to date?
Of course, external sources/repos and Alpha/Beta/RC software isn’t a good idea on those – but if I stick to the original repos, then what is in the way of having a cron job do the work.
BTW, I think the -R 120 option is for having yum wait in case that it cannot perform its job right away. But feel free to correct me, if I am wrong.
Updating automatically is not recommended on production servers because you do not know if it will break anything in your application, there are many instances where due to a patch you might need to update your application.
As to how do organizations do it, you have a patching cycle where you would apply updates to QA/test environment and have QA regress to make sure there are no issues. Next you apply same updates to staging and perform QA. Lastly you go through change control and apply updates to production (usually do half the farm), and QA. After half the production farm is updated and performing without issues, go ahead and patch the remaining servers. At least this is how it is done in 24x7x365 environments.
If you want automatic updates in CentOS 6, install this package:
yum install yum-cron
Regards.