Skip to content
Snippets Groups Projects
Commit 1a79fb60 authored by Christian Berendt's avatar Christian Berendt
Browse files

Create /var/log/kolla/rally before running rally-manage db create/upgrade

Change-Id: I6f88a4ecb4ba980836b4778252bb49731463f4eb
Closes-bug: #1630377
parent 3eac91d5
No related branches found
No related tags found
No related merge requests found
#!/bin/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 if [[ ! -d "/var/log/kolla/rally" ]]; then
mkdir -p /var/log/kolla/rally mkdir -p /var/log/kolla/rally
fi fi
if [[ $(stat -c %a /var/log/kolla/rally) != "755" ]]; then if [[ $(stat -c %a /var/log/kolla/rally) != "755" ]]; then
chmod 755 /var/log/kolla/rally chmod 755 /var/log/kolla/rally
fi fi
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment