Merge "Libvirt needs openvswitch to connect br-int"

This commit is contained in:
Jenkins 2016-03-03 16:31:31 +00:00 committed by Gerrit Code Review
commit ea15697aa8

@ -9,6 +9,7 @@ RUN yum -y install \
python-keystoneclient \
python-cinderclient \
bridge-utils \
openvswitch \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
@ -17,6 +18,7 @@ RUN apt-get install -y --no-install-recommends \
nova-common \
python-nova \
bridge-utils \
openvswitch-switch \
&& apt-get clean
{% endif %}
@ -24,6 +26,7 @@ RUN apt-get install -y --no-install-recommends \
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install bridge-utils \
openvswitch \
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}