2015-08-27 19:09:28 -07: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-13 12:10:33 -06:00
|
|
|
zaqar zaqar-manage db_sync
|
2015-08-27 19:09:28 -07:00
|
|
|
exit 0
|
|
|
|
fi
|