a2b130d6ba
Partially implements: blueprint heka Change-Id: I70e94f4ef7380c6f376a3066d7ddda042c703637
16 lines
522 B
Bash
16 lines
522 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -d "/var/log/kolla/neutron" ]]; then
|
|
mkdir -p /var/log/kolla/neutron
|
|
fi
|
|
if [[ $(stat -c %a /var/log/kolla/neutron) != "755" ]]; then
|
|
chmod 755 /var/log/kolla/neutron
|
|
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
|
|
neutron-db-manage --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/ml2_conf.ini upgrade head
|
|
exit 0
|
|
fi
|