mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
2cd6788c3f
mod_wsgi has no way to import a WSGI module by dotted module name. A new kdcproxy.wsgi script is used to import kdcproxy from whatever Python version mod_wsgi is compiled against. This will simplify moving FreeIPA to Python 3 and solves an import problem on Debian. Resolves: https://pagure.io/freeipa/issue/6834 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
6 lines
138 B
Python
6 lines
138 B
Python
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
"""WSGI entry point for kdcproxy
|
|
"""
|
|
from kdcproxy import application
|
|
|