Skip to content
Snippets Groups Projects
Commit 1a676a36 authored by Sam Yaple's avatar Sam Yaple
Browse files

Adjust package name for Ubuntu Ironic

We target 14.04 which has the package name 'syslinux'
>14.04 has the package name 'pxelinux'

TrivialFix
Backport: Liberty
Change-Id: Id0f4f503257d62d9ce45be5eb8f4faa766244d0a
parent 32006d81
No related branches found
No related tags found
No related merge requests found
......@@ -12,13 +12,13 @@ RUN yum -y install \
{% elif base_distro in ['ubuntu', 'debian'] %}
RUN apt-get install --no-install-recommends \
RUN apt-get install -y --no-install-recommends \
tftpd-hpa \
syslinux-common \
pxelinux \
syslinux \
&& apt-get clean \
&& mkdir -p /tftpboot \
&& cp /usr/lib/syslinux/pxelinux.0 /var/lib/tftpboot/chain.c32 /tftpboot
&& cp /usr/lib/syslinux/pxelinux.0 /usr/lib/syslinux/chain.c32 /tftpboot
{% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment