a703469265
Change-Id: I927c0593fc6b669d760b3744a5e77c532a164ca5 closes-Bug: #1571274 Partially-Implements: blueprint ansible-ceilometer
10 lines
290 B
Bash
10 lines
290 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
|
|
ceilometer-manage db_sync
|
|
sudo chown -R ceilometer: /var/lib/ceilometer/
|
|
exit 0
|
|
fi
|