Merge "Clean up horizon httpd pid files for RPM distros"

This commit is contained in:
Jenkins 2015-11-11 22:34:26 +00:00 committed by Gerrit Code Review
commit 1a6050e5e5

View File

@ -5,3 +5,10 @@ if [[ "${KOLLA_BASE_DISTRO}" == "ubuntu" || \
# Loading Apache2 ENV variables
source /etc/apache2/envvars
fi
# NOTE(pbourke): httpd will not clean up after itself in some cases which
# results in the container not being able to restart. Unconfirmed if this
# happens on Ubuntu. (bug #1489676)
if [[ "${KOLLA_BASE_DISTRO}" =~ fedora|centos|oraclelinux|rhel ]]; then
rm -rf /var/run/httpd/* /run/httpd/* /tmp/httpd*
fi