#!/bin/sh
#
# /etc/cron.daily/upgrade-system
#
## COPYRIGHT © 2004-2012 Martin-Éric Racine <martin-eric.racine@iki.fi>
#
## LICENSE
#  This package is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License or (at
#  your option) any later version.
#
LANGUAGE=C
export LANGUAGE
LC_ALL=C
export LC_ALL
apt-get -qq update
if [ -f /usr/bin/apt-show-versions ]
then
	apt-show-versions -u
fi
#EOF
