From a9edc7e0a0a6f31a3648c78d9d1ebaf38f1c60c2 Mon Sep 17 00:00:00 2001 From: Mauricio Lima Date: Fri, 11 Mar 2016 15:39:23 -0500 Subject: [PATCH] Install openvswitch-switch in manila Change-Id: I8277ad668f46d327807a01ceb96c2abb417f0e3d Closes-Bug:#1556271 --- docker/manila/manila-base/Dockerfile.j2 | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/docker/manila/manila-base/Dockerfile.j2 b/docker/manila/manila-base/Dockerfile.j2 index ef6c2e8330..83069c1f39 100644 --- a/docker/manila/manila-base/Dockerfile.j2 +++ b/docker/manila/manila-base/Dockerfile.j2 @@ -4,11 +4,32 @@ MAINTAINER {{ maintainer }} {% if install_type == 'binary' %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} -RUN yum -y install openstack-manila \ +RUN yum -y install \ + openstack-manila \ + openvswitch \ && yum clean all + {% elif base_distro in ['ubuntu'] %} + +RUN apt-get install -y --no-install-recommends \ + openvswitch-switch \ + && apt-get clean + {% endif %} {% elif install_type == 'source' %} + {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} + +RUN yum -y install \ + openvswitch \ + && yum clean all + + {% elif base_distro in ['ubuntu', 'debian'] %} + +RUN apt-get install -y --no-install-recommends \ + openvswitch-switch \ + && apt-get clean + + {% endif %} ADD manila-base-archive /manila-base-source RUN ln -s manila-base-source/* manila \