Skip to content
Snippets Groups Projects
Commit fb915b5a authored by Jeffrey Zhang's avatar Jeffrey Zhang Committed by Jeffrey Zhang
Browse files

Add hexdump package for ironic-conductor container

On RedHat family distro, util-linux provides the hexdump. On Debian
family distro, bsdmainutils provides the hexdump.

Change-Id: If762f570639782ca477ae4697f354d88c992613b
Closes-Bug: #1627755
parent f9f619d2
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@ MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
{% set ironic_conductor_packages = [
'util-linux',
'openstack-ironic-conductor',
'qemu-img',
'ipmitool',
......@@ -17,6 +18,7 @@ MAINTAINER {{ maintainer }}
] %}
{% elif base_distro in ['ubuntu'] %}
{% set ironic_conductor_packages = [
'bsdmainutils',
'ironic-conductor',
'qemu-utils',
'ipmitool',
......@@ -28,6 +30,7 @@ MAINTAINER {{ maintainer }}
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
{% set ironic_conductor_packages = [
'util-linux',
'qemu-img',
'ipmitool',
'parted',
......@@ -37,6 +40,7 @@ MAINTAINER {{ maintainer }}
] %}
{% elif base_distro in ['ubuntu', 'debian'] %}
{% set ironic_conductor_packages = [
'bsdmainutils',
'qemu-utils',
'ipmitool',
'gdisk',
......
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