Skip to content
Snippets Groups Projects
Commit 1a6050e5 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

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

parents d11b8f26 bac1235e
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment