4108c6c6ec
Change-Id: I13c50a78b2dc7c98b720a4b2e7161104213bd295 Implements: bp ansible-ceilometer
10 lines
282 B
Bash
10 lines
282 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-dbsync
|
|
sudo chown -R ceilometer: /var/lib/ceilometer/
|
|
exit 0
|
|
fi
|