debian: modify INSTALLED_APPS before loading debian_config_common

INSTALLED_APPS is copied into TENANT_APPS by debian_config_common so it needs to
be complete before loading debian_config_common.
This commit is contained in:
Benjamin Dauvergne 2016-07-22 17:36:03 +02:00
parent 4a6b6e0471
commit 1788df5777
1 changed files with 2 additions and 1 deletions

View File

@ -7,10 +7,11 @@ PROJECT_NAME = 'bijoe'
#
# hobotization (multitenant)
#
INSTALLED_APPS = ('bijoe.hobo_agent',) + INSTALLED_APPS + ('mellon',)
execfile('/usr/lib/hobo/debian_config_common.py')
# SAML2 authentication
INSTALLED_APPS = ('bijoe.hobo_agent',) + INSTALLED_APPS + ('mellon',)
AUTHENTICATION_BACKENDS = ('mellon.backends.SAMLBackend',)
#