#!/bin/sh
# no longer required, apt has pdiff support now ... 2006-08-23
exit

#
#	delta, update package lists ... runs apt-dupdate on the pen
#	drive from internet.  [while on either system]
#
set -ex

if [ ! -f bin/delta ]; then
    echo "aborted, we're not in an apt-walkabout instance"
    exit
fi

bin/apt-dupdate \
    --sources=${PWD}/etc/apt/sources.list \
    --packagedir=${PWD}/var/lib/apt/lists \
    --verbose
