fall back to old rc1 cd image location

This commit is contained in:
Joey Hess 2004-09-10 12:21:19 +00:00
parent 3743ff9f46
commit 440aa13100
1 changed files with 4 additions and 2 deletions
tools/boot/sarge

View File

@ -32,9 +32,11 @@ fi
for image in boot.img; do
if [ ! -e "$image" ]; then
if [ ! "$DI_WWW_HOME" ];then
cp "$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/cdrom/$image" .
cp "$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/cdrom/$image" . || \
cp "$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/$image" .
else
wget "$DI_WWW_HOME/cdrom/$image"
wget "$DI_WWW_HOME/cdrom/$image" || \
wget "$DI_WWW_HOME/$image"
fi
fi
done