Skip to content

Commit 78ab65c

Browse files
committed
aarch64: Exclude syslinux from ironic conductor packages
The 'syslinux' package is not available on aarch64, so it is only included in the ironic conductor packages for x86_64 systems. Related-Bug: #1749780 Change-Id: I3eea308a0a70e47dd3b185eece106185b25616f5 (cherry picked from commit 7b4913e)
1 parent 9066422 commit 78ab65c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docker/ironic/ironic-conductor/Dockerfile.j2

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
2323
'util-linux',
2424
'xfsprogs',
2525
'genisoimage',
26-
'syslinux',
2726
] %}
27+
{% if base_arch in ['x86_64'] %}
28+
{% set ironic_conductor_packages = ironic_conductor_packages + [
29+
'syslinux'
30+
] %}
31+
{% endif %}
2832
{% elif base_package_type == 'deb' %}
2933
{% set ironic_conductor_packages = [
3034
'bsdmainutils',

0 commit comments

Comments
 (0)