Fixes wrong local_setting.py file issue for Ubuntu binary deployment.

This bug both affects Rocky and Stein. local_setting.py was not
linked to local_settings under /etc/openstack-dashboard so Horizon
runs with default settings.

Change-Id: I818876619694695663c98d9edcb8c8514198e8fd
Closes-Bug: #1803029
(cherry picked from commit eb7c730e05)
This commit is contained in:
Dincer Celik 2019-07-01 13:18:36 +03:00 committed by Mark Goddard
parent 7f719b1865
commit 510c2d8f95
1 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,8 @@ RUN echo > /etc/apache2/ports.conf \
&& cp /usr/share/openstack-dashboard/openstack_dashboard/conf/*.json /etc/openstack-dashboard \
&& cp /usr/share/openstack-dashboard/manage.py /usr/bin/manage.py \
&& rm /etc/apache2/conf-enabled/openstack-dashboard.conf \
&& rm /etc/openstack-dashboard/local_settings.py \
&& ln -s /etc/openstack-dashboard/local_settings /etc/openstack-dashboard/local_settings.py \
&& for locale in /usr/lib/python{{distro_python_version}}/site-packages/*/locale; do \
(cd ${locale%/*} && /usr/bin/python3 /usr/bin/manage.py compilemessages) \
done