Merge "install pxelinux for ironic_pxe"

This commit is contained in:
Jenkins 2016-10-04 04:07:28 +00:00 committed by Gerrit Code Review
commit 5fcb01d807
2 changed files with 5 additions and 2 deletions

View File

@ -14,7 +14,8 @@ MAINTAINER {{ maintainer }}
{% set ironic_pxe_packages = [
'tftpd-hpa',
'syslinux-common',
'syslinux'
'syslinux',
'pxelinux'
] %}
{% endif %}

View File

@ -4,7 +4,9 @@
# of the KOLLA_BOOTSTRAP variable being set, including empty.
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
chown -R ironic: /tftpboot
for pxe_file in /var/lib/tftpboot/pxelinux.0 /var/lib/tftpboot/chain.c32 /usr/lib/syslinux/pxelinux.0 /usr/lib/syslinux/chain.c32; do
for pxe_file in /var/lib/tftpboot/pxelinux.0 /var/lib/tftpboot/chain.c32 /usr/lib/syslinux/pxelinux.0 \
/usr/lib/syslinux/chain.c32 /usr/lib/PXELINUX/pxelinux.0 \
/usr/lib/syslinux/modules/bios/chain.c32; do
if [[ -e "$pxe_file" ]]; then
cp "$pxe_file" /tftpboot
fi