fall back to old rc1 cd image location
This commit is contained in:
parent
3743ff9f46
commit
440aa13100
tools/boot/sarge
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue