CentOS / RHEL : Configure yum automatic updates with yum-cron service

yum-cron is an optional package starting from Red Hat Enterprise Linux 6, this is a plugin for yum. From man page of yum-cron :

yum-cron is a simple way to call yum commands from cron. It provides configuration to keep repository metadata up to date, and to check for, download, and apply updates.

The yum-cron package provides a convenient way to check for, download and apply updates automatically. The cron jobs from the yum-cron package are active immediately after installing the package and there’s no extra configuration necessary. The job will be run when your normal daily cron jobs are set to run.

Installation

To install yum-cron package

 
# yum -y install yum-cron
# chkconfig yum-cron on

Configuration for RHEL 6

Then edit /etc/sysconfig/yum-cron to set MAILTO=[email address] for email notifications.

MAILTO=sys@example.com

To exclude packages using yum-cron edit the /etc/sysconfig/yum-cron to have the packeges to be excluded in the automatic uodate :

YUM_PARAMETER=kernel* mysql*

To start yum-cron service after editing configuration file.

# service yum-cron start

Configuration for RHEL 7

Then edit /etc/yum/yum-cron.conf to set email_to=[email address] for email notifications.

email_to=sys@example.com

To exclude packages using yum-cron edit the /etc/yum/yum-cron.conf to have the packeges to be excluded in the automatic uodate :

exclude=kernel* mysql*

In RHEL 7 you can use following options in yum-cron configuration file, to install security updates.

[commands]
#  What kind of update to use:
# default                            = yum upgrade
# security                           = yum --security upgrade
# security-severity:Critical         = yum --sec-severity=Critical upgrade
# minimal                            = yum --bugfix upgrade-minimal
# minimal-security                   = yum --security upgrade-minimal
# minimal-security-severity:Critical =  --sec-severity=Critical upgrade-minimal
update_cmd = default

To start yum-cron service after editing configuration file.

# systemctl start yum-cron
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
chrt command: Set / Manipulate Real Time Attributes of a Linux Process
Viewed 11166 times since Mon, Feb 17, 2020
Exclude multiple files and directories with rsync
Viewed 2613 times since Wed, Oct 31, 2018
Df command in Linux not updating actual diskspace, wrong data
Viewed 2962 times since Wed, May 30, 2018
logrotate - rotates, compresses, and mails system logs.
Viewed 1793 times since Fri, Nov 30, 2018
RHCS6: ’fencing’ basics
Viewed 2322 times since Sun, Jun 3, 2018
A tcpdump Tutorial and Primer with Examples
Viewed 5325 times since Sun, Jun 17, 2018
Using stunnel and TinyProxy to obfuscate HTTP traffic
Viewed 7047 times since Fri, Sep 28, 2018
RHEL: GPT/MBR partition tables (using disks larger than 2 TiB)
Viewed 12396 times since Sun, May 27, 2018
Using grep to find string in files
Viewed 2305 times since Fri, May 15, 2020
How to encrypt a partition with DM-Crypt LUKS on Linux
Viewed 8283 times since Fri, Jul 13, 2018