/usr/share/cobbler/web/cobbler.wsgi is in cobbler-web 2.2.2-0ubuntu33.
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 | import os
import sys
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
os.environ['PYTHON_EGG_CACHE'] = '/var/lib/cobbler/webui_cache'
sys.path.append('/usr/share/cobbler/web')
sys.path.append('/usr/share/cobbler/web/cobbler_web')
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
|