====== Surveillance des paquets mis à jour : cron-apt ======
===== Présentation =====
cron-atp contrôle de manière automatique que le système est à jour. Si un paquet est à mettre à jour, cron-apt envoie une alerte par mail.
===== Installation =====
apt-get install cron-apt
===== Configuration =====
==== Fichier /etc/cron-apt/config ====
# Configuration for cron-apt.
# The email address to send mail to.
MAILTO="root"
# When to send email about the cron-apt results.
# Value: error (send mail on error runs)
# upgrade (when packages are upgraded)
# changes (mail when change in output from an action)
# output (send mail when output is generated)
# always (always send mail)
# (else never send mail)
MAILON="upgrade"
# If this is non-empty, it will be used as the host name in subjects of
# generated e-mail messages. If this is empty, the output of uname -n
# will be used.
HOSTNAME="MyHost"
cron-apt enverra un mail à **root** - voir le paramétrage d'[[exim#les_destinataires|exim]] pour le destinataire associé à root - lorsqu'une mise à jour - **upgrade** - sera disponible.
===== Planification avec cron =====
==== Fichier /etc/cron.d/cron-apt ====
#
# Regular cron jobs for the cron-apt package
#
# Every night at 4 o'clock.
0 4 * * * root test -x /usr/sbin/cron-apt && /usr/sbin/cron-apt
# Every hour.
# 0 * * * * root test -x /usr/sbin/cron-apt && /usr/sbin/cron-apt /etc/cron-apt/config2
# Every five minutes.
# */5 * * * * root test -x /usr/sbin/cron-apt && /usr/sbin/cron-apt /etc/cron-apt/config2