Merge "Create and chown /etc/heka directory"

This commit is contained in:
Jenkins 2016-04-12 14:41:22 +00:00 committed by Gerrit Code Review
commit 3f9f267a42
1 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,8 @@ MAINTAINER {{ maintainer }}
RUN yum -y install https://github.com/mozilla-services/heka/releases/download/v0.10.0/heka-0_10_0-linux-amd64.rpm \
&& yum clean all \
&& useradd --user-group heka
&& useradd --user-group heka \
&& mkdir /etc/heka
{% elif base_distro in ['ubuntu'] %}
@ -25,7 +26,7 @@ COPY extend_start.sh /usr/local/bin/kolla_extend_start
RUN usermod -a -G kolla heka \
&& chmod 440 /etc/sudoers.d/heka_sudoers \
&& chmod 755 /usr/local/bin/kolla_extend_start \
&& chown -R heka: /usr/share/heka
&& chown -R heka: /usr/share/heka /etc/heka
{{ include_footer }}