Make openvswitch build from source

The openvswich package is only available in the rdo repositories.

Change-Id: Ic4b22fd0fd27508f3b08c776b8c784ee89ac811d
Partially-Impelements: gate-source-builds
This commit is contained in:
Steven Dake 2015-08-16 10:03:45 -07:00
parent a765e6a708
commit bcd9f2c23d

View File

@ -3,7 +3,14 @@ MAINTAINER Kolla Project (https://launchpad.net/kolla)
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
RUN yum install -y openvswitch \
# TODO(sdake): groan openvswitch is only in the RDO repos
{% if install_type == 'source' %}
RUN yum install -y https://rdoproject.org/repos/openstack-kilo/rdo-release-kilo.rpm \
&& yum clean all
{% endif %}
RUN yum install -y \
openvswitch \
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}