71a34b6da3
There is no need with /etc/apache2/envvars for ceilomter_notification Change-Id: I00f91dca3763a33f77be2a1968047126504feb55
15 lines
450 B
Bash
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
|