Merge "Fixing crond crashing with centos/source"

This commit is contained in:
Jenkins 2016-07-28 20:52:31 +00:00 committed by Gerrit Code Review
commit 6ffab8e65f

View File

@ -2,7 +2,6 @@ FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
MAINTAINER {{ maintainer }}
{% import "macros.j2" as macros with context %}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
{% set cron_packages = [
'cronie',
@ -16,7 +15,6 @@ MAINTAINER {{ maintainer }}
{% endif %}
RUN {{ macros.install_packages(cron_packages | customizable("packages")) }}
{% endif %}
COPY extend_start.sh /usr/local/bin/kolla_extend_start
RUN chmod 755 /usr/local/bin/kolla_extend_start