openstack-ansible-os_horizon/templates/horizon-manage.py.j2
Dmitriy Rabotyagov 25047cd997 Fix horizon distro installation for EL
RDO is installing Horizon not under site-packages, but under /usr/share
which makes it completely different logic, with default horizon-manage
not working, as it can not import openstack_dashboard now, as

Change-Id: I4c06b4b5a206b087a9fce856f5fec936e058e3f8
2024-06-04 19:47:13 +02:00

27 lines
1.0 KiB
Django/Jinja

#!{{ horizon_bin }}/{{ horizon_venv_python_executable }}
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import os
import sys
from django.core.management import execute_from_command_line # noqa
if __name__ == "__main__":
{% if horizon_install_method == 'distro' and (ansible_facts['os_family'] | lower == 'redhat') %}
sys.path.append('{{ horizon_lib_dir }}')
{% endif %}
os.environ.setdefault("DJANGO_SETTINGS_MODULE",
"openstack_dashboard.settings")
execute_from_command_line(sys.argv)