Merge "Add missing cleanup step for heat images"

This commit is contained in:
Jenkins 2017-04-20 15:36:00 +00:00 committed by Gerrit Code Review
commit baec569df3
1 changed files with 13 additions and 0 deletions

View File

@ -7,4 +7,17 @@ if [[ $(stat -c %a /var/log/kolla/heat) != "755" ]]; then
chmod 755 /var/log/kolla/heat
fi
# Assume the service runs on top of Apache when user is root
if [[ $USER == 'root' ]]; then
# NOTE(pbourke): httpd will not clean up after itself in some cases which
# results in the container not being able to restart. (bug #1489676, 1557036)
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
# Loading Apache2 ENV variables
. /etc/apache2/envvars
rm -rf /var/run/apache2/*
else
rm -rf /var/run/httpd/* /run/httpd/* /tmp/httpd*
fi
fi
. /usr/local/bin/kolla_heat_extend_start