2015-08-27 18:09:20 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [[ "${KOLLA_BASE_DISTRO}" == "ubuntu" || \
|
|
|
|
"${KOLLA_BASE_DISTRO}" == "debian" ]]; then
|
|
|
|
# Loading Apache2 ENV variables
|
|
|
|
source /etc/apache2/envvars
|
|
|
|
fi
|
2015-11-11 11:11:44 +00:00
|
|
|
|
|
|
|
# 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
|