4417571b9b
neutron-plugin-linuxbridge and neutron-plugin-openvswitch package is useless and removed in Mitaka on Ubuntu Change-Id: Ia156d58410198af969f579cd5e7461c31ea63408 Closes-Bug: #1568281
26 lines
580 B
Django/Jinja
26 lines
580 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}neutron-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
# Install required packages
|
|
RUN yum install -y \
|
|
openstack-neutron-openvswitch \
|
|
openvswitch \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
openvswitch-switch \
|
|
neutron-plugin-openvswitch-agent \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{{ include_footer }}
|
|
|
|
USER neutron
|