Skip to content
Snippets Groups Projects
Commit 3e1acf00 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Fix launch vm failed in neutron-linuxbridge-agent env"

parents 544c00b4 eec09486
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,7 @@ RUN apt-get install -y --no-install-recommends \ ...@@ -27,6 +27,7 @@ RUN apt-get install -y --no-install-recommends \
RUN yum -y install \ RUN yum -y install \
conntrack-tools \ conntrack-tools \
dnsmasq \ dnsmasq \
dnsmasq-utils \
ipset \ ipset \
openvswitch \ openvswitch \
uuid \ uuid \
...@@ -38,6 +39,7 @@ RUN apt-get install -y --no-install-recommends \ ...@@ -38,6 +39,7 @@ RUN apt-get install -y --no-install-recommends \
arping \ arping \
conntrack \ conntrack \
dnsmasq \ dnsmasq \
dnsmasq-utils \
ipset \ ipset \
iptables \ iptables \
openvswitch-switch \ openvswitch-switch \
......
...@@ -22,9 +22,17 @@ RUN apt-get install -y --no-install-recommends \ ...@@ -22,9 +22,17 @@ RUN apt-get install -y --no-install-recommends \
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
# Install required packages # Install required packages
RUN yum install -y ebtables \ RUN yum install -y \
ebtables \
bridge-utils \
&& yum clean all && yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y \
ebtables \
bridge-utils \
&& apt-get clean
{% endif %} {% endif %}
{% endif %} {% endif %}
......
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