=== modified file 'apt-setup-verify' --- apt-setup-verify 2006-04-11 01:07:44 +0000 +++ apt-setup-verify 2006-10-18 10:39:01 +0000 @@ -29,6 +29,19 @@ tmp=$($chroot $ROOT tempfile) echo "$line" > $ROOT$tmp + # If the base system can be installed from CD, don't bother + # validating the mirror; it can take a long time, most users won't + # care just now, and the situation can be repaired later once the + # system is installed. + if [ -e /cdrom/.disk/base_installable ] || [ "$OVERRIDE_BASE_INSTALLABLE" ]; then + case $line in + 'deb http'*|'deb ftp'*|'deb-src http'*|'deb-src ftp'*) + rm -f $ROOT$tmp + return 0 + ;; + esac + fi + if $chroot $ROOT apt-get -o APT::Get::List-Cleanup=false \ -o Dir::Etc::sourcelist=$tmp update then