9 lines
276 B
Bash
9 lines
276 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
|
|
murano-db-manage --config-file /etc/murano/murano.conf upgrade
|
|
exit 0
|
|
fi
|