#!/bin/sh
#
# cron script to update the local apt cache.
#
# Written by Steve Kemp <steve@steve.org.uk>
#

if [ -x /usr/bin/update-apt ]; then
   /usr/bin/update-apt 2&>/dev/null >/dev/null
fi
