Skip to content
Snippets Groups Projects
Commit 69fc0bbd authored by Andrey Shestakov's avatar Andrey Shestakov
Browse files

Add required packages to ironic-conductor container

ironic-conductor service requires qemu-img and ipmitool utils.

TrivialFix
Change-Id: I5489087031c9b209ead862a531ce4544e20265ee
parent 632eb203
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,15 @@ MAINTAINER {{ maintainer }} ...@@ -7,6 +7,15 @@ MAINTAINER {{ maintainer }}
RUN yum -y install openstack-ironic-conductor \ RUN yum -y install openstack-ironic-conductor \
&& yum clean all && yum clean all
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['ubuntu', 'debian'] %}
RUN apt-get install -y --no-install-recommends \
qemu-utils \
ipmitool \
&& apt-get clean
{% endif %} {% endif %}
{% endif %} {% 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