Skip to content
Snippets Groups Projects
Commit bcd9f2c2 authored by Steven Dake's avatar Steven Dake
Browse files

Make openvswitch build from source

The openvswich package is only available in the rdo repositories.

Change-Id: Ic4b22fd0fd27508f3b08c776b8c784ee89ac811d
Partially-Impelements: gate-source-builds
parent a765e6a7
No related branches found
No related tags found
No related merge requests found
......@@ -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'] %}
......
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