9 lines
233 B
Bash
9 lines
233 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
|
||
|
aodh-manage db_sync
|
||
|
exit 0
|
||
|
fi
|