2015-08-28 01:21:51 +00:00
|
|
|
#!/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
|
2015-11-17 17:54:21 +00:00
|
|
|
magnum-db-manage upgrade
|
2015-08-28 01:21:51 +00:00
|
|
|
exit 0
|
|
|
|
fi
|