kolla/docker/ceilometer/ceilometer-notification/extend_start.sh
chenyaguang 71a34b6da3 Ceilometer notification container start failed
There is no need with /etc/apache2/envvars for ceilomter_notification

Change-Id: I00f91dca3763a33f77be2a1968047126504feb55
2018-04-03 17:10:29 +08:00

15 lines
450 B
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}" == "gnocchi" ]]; then
ceilometer-upgrade
else
echo "Unsupported database type: ${CEILOMETER_DATABASE_TYPE}"
exit 1
fi
sudo chown -R ceilometer: /var/lib/ceilometer/
exit 0
fi