feca4a3f4a
Change-Id: Iaa7049834be784c7410970fb9f0b25086891211d Partial-Bug: #1546944
9 lines
238 B
Bash
9 lines
238 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
|
|
magnum-db-manage upgrade
|
|
exit 0
|
|
fi
|