18fa72c901
Closes-Bug: #1626364 Change-Id: I9d586b950b7099a9b160f7b32c9ff00b189a0287
27 lines
1.0 KiB
Bash
27 lines
1.0 KiB
Bash
#!/bin/bash
|
|
|
|
# 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
|
|
if [[ "${CEILOMETER_DATABASE_TYPE}" == "mysql" ]]; then
|
|
sudo -H -u ceilometer ceilometer-upgrade --skip-gnocchi-resource-types
|
|
elif [[ "${CEILOMETER_DATABASE_TYPE}" == "gnocchi" ]]; then
|
|
sudo -H -u ceilometer ceilometer-upgrade --skip-metering-database --skip-event-database
|
|
elif [[ "${CEILOMETER_DATABASE_TYPE}" == "mongodb" ]]; then
|
|
echo "Ceilometer doesn't need to initialize a database when MongoDB is configured as the database backend."
|
|
else
|
|
echo "Unsupported database type: ${CEILOMETER_DATABASE_TYPE}"
|
|
exit 1
|
|
fi
|
|
sudo chown -R ceilometer: /var/lib/ceilometer/
|
|
exit 0
|
|
fi
|
|
|
|
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
|