Debian / Ubuntu Linux: Send Automatic Email Notification When Security Upgrades Available

Q. How do I force apt-get to send me email when upgrades or security updates available under Debian or Ubuntu Linux? Do I need to write a shell script which generates a mail with a list of all packages currently pending an upgrade?

A. No you don't have to write a shell script. You need to use apticron command / script for notification. apticron is mainly intended for automatic notification of pending security updates but can also be used in many other situations where timely updates are neccessary.

Install apticron

Type the following command at a shell prompt:
# apt-get update
# apt-get install apticron

Configure apticron to send email notifications

The default coniguration file is located at /etc/apticron/apticron.conf. Open file using text editor:
# vi /etc/apticron/apticron.conf
You need to set email address to email the notification as follows:
EMAIL="vivek@nixcraft.in"
My sample configuration file:

# apticron.conf
#
# set EMAIL to a list of addresses which will be notified of impending updates
#
EMAIL="vivek@nixcraft.in"

#
# Set LISTCHANGES_PROFILE if you would like apticron to invoke apt-listchanges
# with the --profile option. You should add a corresponding profile to
# /etc/apt/listchanges.conf
#
# LISTCHANGES_PROFILE="apticron"

#
# Set SYSTEM if you would like apticron to use something other than the output
# of "hostname -f" for the system name in the mails it generates
#
# SYSTEM="foobar.example.com"

#
# Set IPADDRESSNUM if you would like to configure the maximal number of IP
# addresses apticron displays. The default is to display 1 address of each
# family type (inet, inet6), if available.
#
# IPADDRESSNUM="1"

#
# Set IPADDRESSES to a whitespace seperated list of reachable addresses for
# this system. By default, apticron will try to work these out using the
# "ip" command
#
# IPADDRESSES="192.0.2.1 2001:db8:1:2:3::1"

Save and close the file. /etc/cron.daily/apticron is the cron script for executing apticron daily and it will send you notfication when updates available.

Sample apticron email

Here is a sample email:

apticron report [Sun, 06 Jul 2008 07:07:23 +0000]
========================================================================

apticron has detected that some packages need upgrading on: 

	vip.clicklinux.org
	[ 72.51.34.244 ::72.51.34.244 ]

The following packages are currently pending an upgrade:

	libpcre3 6.7+7.4-4

========================================================================

Package Details:

Reading changelogs...
--- Changes for pcre3 (libpcre3) ---
pcre3 (6.7+7.4-4) stable-security; urgency=high

  * Non-maintainer upload by the security team.
  * Apply patch from Tavis Ormandy to fix a heap overflow in the compiler,
    triggered by patterns which contain options and multiple branches
    (CVE-2008-2371).

 -- Florian Weimer   Fri, 04 Jul 2008 21:15:19 +0200

========================================================================

You can perform the upgrade by issuing the command:

	aptitude dist-upgrade

as root on vip.clicklinux.org

It is recommended that you simulate the upgrade first to confirm that
the actions that would be taken are reasonable. The upgrade may be
simulated by issuing the command:

	aptitude -s -y dist-upgrade

-- apticron 

You will get an email when security updates released by Debian / Ubuntu security team. I also suggest subscribing to Debian email security update notification and Ubuntu Linux security notification via RSS or email.

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 2 comments… read them below or add one }

1 Ajayaghosh 06.23.08 at 4:58 am

Redhat Linux: How to Send Automatic Email Notification in rhel-4 When Security Upgrades Available

2 budacsik 09.20.08 at 12:24 pm

Thanks for useful information

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Tagged as: , , , , , , , , , ,

Previous post: Linux Check Health of 3ware RAID Array

Next post: Firefox 3 Install Firebug Addon Software