Merge "Update Gnocchi dockerfiles for formatting"

This commit is contained in:
Jenkins 2016-04-13 07:48:16 +00:00 committed by Gerrit Code Review
commit 0a3fa59241
3 changed files with 4 additions and 3 deletions
docker/gnocchi
gnocchi-api
gnocchi-base
gnocchi-statsd

@ -4,7 +4,7 @@ MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum install -y \
RUN yum -y install \
openstack-gnocchi-api \
openstack-gnocchi-carbonara \
openstack-gnocchi-indexer-sqlalchemy \

@ -4,7 +4,7 @@ MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum install -y \
RUN yum -y install \
openstack-gnocchi-common \
&& yum clean all

@ -4,7 +4,8 @@ MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum install -y openstack-gnocchi-statsd \
RUN yum -y install \
openstack-gnocchi-statsd \
&& yum clean all
{% endif %}