#!/bin/sh
#
# /etc/cron.daily/apt-update
#
## COPYRIGHT
#  (C) 2004-2011, 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.
#
apt-get -q=2 update
if [ -f /usr/bin/apt-show-versions ]
then
	apt-show-versions -u
fi
#EOF
