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

This commit is contained in:
Jenkins 2016-01-17 16:00:36 +00:00 committed by Gerrit Code Review
commit 100c49d7b4

View File

@ -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 \