#!/bin/sh
# 
#  Update apt's local cache, this is called from a local cron job
# which initially runs at midnight.
#

#
#  Clean
/usr/bin/apt-get autoclean

#
#  Get the latest version
/usr/bin/apt-get update

#
#
/usr/bin/apt-get --download-only --yes upgrade
