d3d3472326
Change-Id: I647c38adbfd00c70874cf51c0bfcb68d243e26cc Partially-Implements: blueprint rally-role
16 lines
441 B
Bash
16 lines
441 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
|
|
rally-manage db create || rally-manage db upgrade
|
|
exit 0
|
|
fi
|
|
|
|
if [[ ! -d "/var/log/kolla/rally" ]]; then
|
|
mkdir -p /var/log/kolla/rally
|
|
fi
|
|
if [[ $(stat -c %a /var/log/kolla/rally) != "755" ]]; then
|
|
chmod 755 /var/log/kolla/rally
|
|
fi
|