/usr/share/bcfg2/reports.wsgi is in bcfg2-web 1.4.0~pre2+git141-g6d40dace6358-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import os
import Bcfg2.Options
import Bcfg2.DBSettings
config_parsed = False
def application(environ, start_response):
global config_parsed
# with wsgi, the environment isn't present in os.environ, but
# is passwd to the application function
if 'BCFG2_CONFIG_FILE' in environ:
os.environ['BCFG2_CONFIG_FILE'] = environ['BCFG2_CONFIG_FILE']
if not config_parsed:
Bcfg2.Options.get_parser().parse()
config_parsed = True
try:
from django.core.wsgi import get_wsgi_application
return get_wsgi_application()(environ, start_response)
except ImportError:
import django.core.handlers.wsgi
return django.core.handlers.wsgi.WSGIHandler()(environ, start_response)
|