Ubuntu: replace wily (15.10) support with artful (17.10).
This commit is contained in:
parent
5e382af53f
commit
4e0a09ce4e
|
@ -9,13 +9,13 @@ label lts86
|
|||
kernel installer/ubuntu/lts/i386/linux
|
||||
append vga=normal initrd=installer/ubuntu/lts/i386/initrd.gz -- quiet
|
||||
label latest64
|
||||
menu label Ubuntu ^Latest (15.10) GNU/Linux amd64
|
||||
kernel installer/ubuntu/wily/amd64/linux
|
||||
append vga=normal initrd=installer/ubuntu/wily/amd64/initrd.gz -- quiet
|
||||
menu label Ubuntu ^Latest (17.10) GNU/Linux amd64
|
||||
kernel installer/ubuntu/artful/amd64/linux
|
||||
append vga=normal initrd=installer/ubuntu/artful/amd64/initrd.gz -- quiet
|
||||
label latest86
|
||||
menu label Ubuntu ^Latest (15.10) GNU/Linux i386
|
||||
kernel installer/ubuntu/wily/i386/linux
|
||||
append vga=normal initrd=installer/ubuntu/wily/i386/initrd.gz -- quiet
|
||||
menu label Ubuntu ^Latest (17.10) GNU/Linux i386
|
||||
kernel installer/ubuntu/artful/i386/linux
|
||||
append vga=normal initrd=installer/ubuntu/artful/i386/initrd.gz -- quiet
|
||||
|
||||
label separator
|
||||
menu label -----
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# This script do the following:
|
||||
# Download last Ubuntu LTS 16.04 (xenial)
|
||||
# Download Ubuntu 15.10 (wily)
|
||||
# Download Ubuntu 17.10 (artful)
|
||||
# Make a symlink to access to the last LTS
|
||||
|
||||
TFTP_ROOT="/var/lib/tftpboot"
|
||||
|
@ -10,7 +10,7 @@ TFTP_ROOT="/var/lib/tftpboot"
|
|||
# last Long Term Support distribution name
|
||||
LTS="xenial"
|
||||
|
||||
for DISTRO in wily ${LTS}; do
|
||||
for DISTRO in artful ${LTS}; do
|
||||
for ARCH in amd64 i386; do
|
||||
mkdir -p ${TFTP_ROOT}/installer/ubuntu/${DISTRO}/${ARCH}
|
||||
pushd ${TFTP_ROOT}/installer/ubuntu/${DISTRO}/${ARCH}
|
||||
|
|
Loading…
Reference in New Issue