Skip to content
Snippets Groups Projects
Commit 100c49d7 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "ironic-conductor: install ipmitool for source deploy in centos"

parents b0b3f6a2 e25c12fe
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,12 @@ RUN yum -y install openstack-ironic-conductor \
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install ipmitool \
&& yum clean all
{% endif %}
{% if base_distro in ['ubuntu', 'debian'] %}
RUN apt-get install -y --no-install-recommends \
......
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