Merge "Install agent dependencies from source for CentOS"

This commit is contained in:
Jenkins 2015-10-07 09:50:31 +00:00 committed by Gerrit Code Review
commit ec835750e7

View File

@ -15,7 +15,16 @@ RUN pip install oslo.versionedobjects
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['ubuntu', 'debian'] %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
uuid \
dnsmasq \
ipset \
openvswitch \
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}
RUN apt-get install -y --no-install-recommends \
iptables \