All of the agents try to install yum

The operation is meant to clean the cache, but instead the agents
are running "yum install yum" which is incorrect.

Change-Id: I8e207e93bb10361a7afbbfd02ab11d12ad1cd77c
This commit is contained in:
Steven Dake 2015-02-24 00:04:07 -07:00 committed by Martin André
parent 47d36732ea
commit 7da4e92c3a
4 changed files with 4 additions and 8 deletions

View File

@ -2,8 +2,7 @@ FROM kollaglue/fedora-rdo-neutron-base:l3_ovs_wip
MAINTAINER Kolla Project (https://launchpad.net/kolla) MAINTAINER Kolla Project (https://launchpad.net/kolla)
# Install required packages # Install required packages
RUN yum install -y openstack-neutron \ RUN yum install -y openstack-neutron && yum clean all
yum clean all;
# Add required scripts # Add required scripts
ADD ./start.sh /start.sh ADD ./start.sh /start.sh

View File

@ -2,8 +2,7 @@ FROM kollaglue/fedora-rdo-neutron-base:l3_ovs_wip
MAINTAINER Kolla Project (https://launchpad.net/kolla) MAINTAINER Kolla Project (https://launchpad.net/kolla)
# Install required packages # Install required packages
RUN yum install -y openstack-neutron \ RUN yum install -y openstack-neutron && yum clean all;
yum clean all;
# Add required scripts # Add required scripts
ADD ./start.sh /start.sh ADD ./start.sh /start.sh

View File

@ -3,8 +3,7 @@ MAINTAINER Kolla Project (https://launchpad.net/kolla)
# Install required packages # Install required packages
RUN yum install -y openstack-neutron \ RUN yum install -y openstack-neutron \
openstack-neutron-linuxbridge \ openstack-neutron-linuxbridge && yum clean all;
yum clean all;
# Add required scripts # Add required scripts
ADD ./start.sh /start.sh ADD ./start.sh /start.sh

View File

@ -2,8 +2,7 @@ FROM kollaglue/fedora-rdo-neutron-base:l3_ovs_wip
MAINTAINER Kolla Project (https://launchpad.net/kolla) MAINTAINER Kolla Project (https://launchpad.net/kolla)
# Install required packages # Install required packages
RUN yum install -y openstack-neutron \ RUN yum install -y openstack-neutron && yum clean all;
yum clean all;
# Add required scripts # Add required scripts
ADD ./start.sh /start.sh ADD ./start.sh /start.sh