Merge "Removing /dev/log on rsyslog start"

This commit is contained in:
Jenkins 2015-10-07 09:58:34 +00:00 committed by Gerrit Code Review
commit 05764198a2
2 changed files with 7 additions and 0 deletions

View File

@ -13,4 +13,6 @@ RUN apt-get install -y --no-install-recommends rsyslog \
{% endif %}
COPY extend_start.sh /usr/local/bin/kolla_extend_start
{{ include_footer }}

View File

@ -0,0 +1,5 @@
#!/bin/bash
if [[ -e "/dev/log" ]]; then
rm -rf /dev/log
fi