#!/bin/sh
#
# /etc/cron.daily/upgrade-system
#
# COPYRIGHT © 2004-2012 Martin-Éric Racine <martin-eric.racine@iki.fi>
#
# LICENSE
# GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>
#
LANGUAGE=C
LC_ALL=C
export LANGUAGE LC_ALL
apt-get --quiet --quiet update
apt-get --quiet --quiet autoclean
if [ -x /usr/bin/apt-show-versions ]
then
	apt-show-versions --upgradeable
fi
#EOF
