#!/bin/sh
#
# execute daily apt-get upate for update-watch

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