d3f65a812f
Database-backed sessions are scalable (using an appropriate database strategy), persistent, and can be made high-concurrency and highly-available [0] Default is off. [0] http://docs.openstack.org/developer/horizon/topics/deployment.html#database Co-Authored-By: Vladislav Belogrudov <vladislav.belogrudov@oracle.com> Closes-Bug: 1618781 Change-Id: Ib68a21397dc020d20e07dcc51d3d0fdc1de102ff
45 lines
1.7 KiB
Bash
45 lines
1.7 KiB
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
|
|
MANAGE_PY="/usr/bin/python /usr/bin/manage.py"
|
|
if [[ -f "/var/lib/kolla/venv/bin/python" ]]; then
|
|
MANAGE_PY="/var/lib/kolla/venv/bin/python /var/lib/kolla/venv/bin/manage.py"
|
|
fi
|
|
$MANAGE_PY syncdb --noinput
|
|
exit 0
|
|
fi
|
|
|
|
# NOTE(pbourke): httpd will not clean up after itself in some cases which
|
|
# results in the container not being able to restart. (bug #1489676, 1557036)
|
|
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
|
|
# Loading Apache2 ENV variables
|
|
. /etc/apache2/envvars
|
|
rm -rf /var/run/apache2/*
|
|
else
|
|
rm -rf /var/run/httpd/* /run/httpd/* /tmp/httpd*
|
|
fi
|
|
|
|
# NOTE(jeffrey4l): The local_settings file affect django-compress
|
|
# behavior, so re-generate the compressed javascript and css if it
|
|
# is changed
|
|
MD5SUM_TXT_PATH="/tmp/.local_settings.md5sum.txt"
|
|
if [[ ! -f ${MD5SUM_TXT_PATH} || $(md5sum -c --status ${MD5SUM_TXT_PATH};echo $?) != 0 ]]; then
|
|
md5sum /etc/openstack-dashboard/local_settings > ${MD5SUM_TXT_PATH}
|
|
if [[ "${KOLLA_INSTALL_TYPE}" == "binary" ]]; then
|
|
/usr/bin/manage.py compress --force
|
|
elif [[ "${KOLLA_INSTALL_TYPE}" == "source" ]]; then
|
|
/var/lib/kolla/venv/bin/python /var/lib/kolla/venv/bin/manage.py compress --force
|
|
fi
|
|
fi
|
|
|
|
# NOTE(sbezverk) since Horizon is now storing logs in its own location, /var/log/horizon
|
|
# needs to be created if it does not exist
|
|
if [[ ! -d "/var/log/kolla/horizon" ]]; then
|
|
mkdir -p /var/log/kolla/horizon
|
|
fi
|
|
if [[ $(stat -c %a /var/log/kolla/horizon) != "755" ]]; then
|
|
chmod 755 /var/log/kolla/horizon
|
|
fi
|