Remove which from neutron-server

The which tool is installed in the base image now and this extra
install is duplicated and has no effect.

backport:liberty

TrivialFix

Change-Id: I70c3edb11f5c847063b6e4ab4f9de7184356ce57
This commit is contained in:
Steven Dake 2015-10-06 11:05:52 -07:00
parent c5b6a436bd
commit e6391aff36
1 changed files with 0 additions and 12 deletions

View File

@ -4,22 +4,10 @@ MAINTAINER Kolla Project (https://launchpad.net.kolla)
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
# Install required packages
RUN yum install -y which \
&& yum clean all
# See bug: https://bugs.launchpad.net/kolla/+bug/1483667
# TODO(SamYaple): Check in on this and remove once unneccesary
RUN pip install oslo.messaging==2.2.0
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
#Install required packages
RUN yum install -y which \
&& yum clean all
{% endif %}
{% endif %}