2015-08-27 18:02:04 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-07-28 14:28:20 +00:00
|
|
|
# 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
|
2017-08-28 11:01:24 +05:30
|
|
|
. /etc/apache2/envvars
|
2016-07-28 14:28:20 +00:00
|
|
|
rm -rf /var/run/apache2/*
|
|
|
|
else
|
|
|
|
rm -rf /var/run/httpd/* /run/httpd/* /tmp/httpd*
|
|
|
|
fi
|
|
|
|
|
2015-08-27 18:02:04 -07:00
|
|
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
|
|
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
|
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
2017-07-13 01:49:07 +08:00
|
|
|
sudo -H -u gnocchi gnocchi-upgrade --log-file /var/log/kolla/gnocchi/gnocchi-upgrade.log
|
2015-08-27 18:02:04 -07:00
|
|
|
exit 0
|
|
|
|
fi
|