Merge "Remove venv activation code"

This commit is contained in:
Jenkins 2016-03-12 05:32:43 +00:00 committed by Gerrit Code Review
commit f5effbbfa3
3 changed files with 4 additions and 19 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!{{ horizon_venv_enabled | bool | ternary(horizon_venv_bin + "/", "/usr/bin/env ") }}python
# 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
@ -13,14 +13,6 @@
# under the License.
import os
{% if horizon_venv_enabled | bool %}
activate_this = os.path.expanduser("{{ horizon_venv_bin }}/activate_this.py")
execfile(activate_this, dict(__file__=activate_this))
{% endif %}
import sys
from django.core.management import execute_from_command_line # noqa

View File

@ -1,13 +1,5 @@
import logging
import os
{% if horizon_venv_enabled | bool %}
activate_this = os.path.expanduser("{{ horizon_venv_bin }}/activate_this.py")
execfile(activate_this, dict(__file__=activate_this))
{% endif %}
import sys
from django.core.wsgi import get_wsgi_application
from django.conf import settings
@ -19,4 +11,4 @@ sys.stdout = sys.stderr
DEBUG = False
application = get_wsgi_application()
application = get_wsgi_application()

View File

@ -36,7 +36,8 @@
{% endif %}
WSGIScriptAlias / {{ horizon_lib_wsgi_file }}
WSGIDaemonProcess horizon user={{ horizon_system_user_name }} group={{ horizon_system_group_name }} processes={{ horizon_wsgi_processes | default(wsgi_threads) }} threads={{ horizon_wsgi_threads | default(wsgi_threads) }}
WSGIDaemonProcess horizon user={{ horizon_system_user_name }} group={{ horizon_system_group_name }} processes={{ horizon_wsgi_processes | default(wsgi_threads) }} threads={{ horizon_wsgi_threads | default(wsgi_threads) }} {% if horizon_venv_enabled | bool %}python-path={{ horizon_venv_bin | dirname }}/lib/python2.7/site-packages{% endif %}
WSGIProcessGroup horizon
WSGIApplicationGroup horizon