Better debian variables name (iso_file & iso_url)

This commit is contained in:
Yorick Barbanneau 2016-10-10 16:29:24 +02:00
parent 1dc0a27a52
commit 7f3ab8830c

View file

@ -87,7 +87,7 @@ then
fi
bootfiles_Debian="http://ftp.debian.org/debian/dists/jessie/main/installer-${DEBIAN_ARCH}/current/images/hd-media"
iso_Debian="http://cdimage.debian.org/debian-cd/${DEBIAN_VERSION}/${DEBIAN_ARCH}/iso-cd/"
iso_url="http://cdimage.debian.org/debian-cd/${DEBIAN_VERSION}/${DEBIAN_ARCH}/iso-cd/"
iso_file="debian-${DEBIAN_VERSION}-${DEBIAN_ARCH}-netinst.iso "
syslinux_url="https://www.kernel.org/pub/linux/utils/boot/syslinux/"
syslinux_archive="syslinux-${SYSLINUX_VERSION}.tar.gz"
@ -99,7 +99,7 @@ for file in "vmlinuz" "initrd.gz"
do
download $file $bootfiles_Debian 1
done
download ${iso_Debian} $iso_file 1
download $iso_file $iso_url 1
# Get Syslinux archive
echo -e "\nPrepare syslinux files\n---"