Fix neutron-server for centos-binary

openstack-neutron package is missing a dependency on
python-oslo-reports. Add it to Kolla until RDO packaging is fixed.

Change-Id: Idfdc1139b790ed8778540a763e0f205101140db7
Closes-Bug: #1531107
This commit is contained in:
Martin André 2016-01-05 18:29:04 +09:00
parent 2a6ec2c9b5
commit 8d96569fd8

View File

@ -4,10 +4,12 @@ MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
# TODO(mandre) remove python-oslo-reports once RDO package is fixed
RUN yum -y install \
openstack-neutron \
openstack-neutron-ml2 \
openvswitch \
python-oslo-reports \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}