debian: load hobo agent after execing debian_config_common (fixes #12737)

It needs to override hobo_deploy command from hobo.agent.common.
This commit is contained in:
Benjamin Dauvergne 2016-07-25 13:13:41 +02:00
parent 6cec6f382c
commit 7a4b76c7fd
1 changed files with 4 additions and 2 deletions

View File

@ -5,15 +5,17 @@ import os
PROJECT_NAME = 'bijoe'
#
# hobotization (multitenant)
# SAML-isation
#
INSTALLED_APPS = ('bijoe.hobo_agent',) + INSTALLED_APPS + ('mellon',)
INSTALLED_APPS = INSTALLED_APPS + ('mellon',)
execfile('/usr/lib/hobo/debian_config_common.py')
# SAML2 authentication
AUTHENTICATION_BACKENDS = ('mellon.backends.SAMLBackend',)
# Override default hobo agent
INSTALLED_APPS = ('bijoe.hobo_agent',) + INSTALLED_APPS
#
# local settings
#