From 67c1dcb1f34d08d8ebda3a34d2eef625bfc29d5d Mon Sep 17 00:00:00 2001 From: PCoder Date: Mon, 4 Feb 2019 19:59:41 +0100 Subject: [PATCH] Change default user/search DNs --- ipv6work/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipv6work/settings.py b/ipv6work/settings.py index b8a2138..893d061 100644 --- a/ipv6work/settings.py +++ b/ipv6work/settings.py @@ -212,7 +212,7 @@ LOGGING = { LDAP_SEARCH_BASE=config( 'LDAP_SEARCH_BASE', - default='ou=users,dc=ungleich,dc=ch' + default='ou=customer,dc=ungleich,dc=ch' ) LDAP_MAX_UID_PATH = os.path.join( @@ -226,7 +226,7 @@ LDAP_DEFAULT_START_UID = config( 'LDAP_DEFAULT_START_UID', cast=int, default=10000 ) -LDAP_USER_DN = config('LDAP_USER_DN', default='ou=users,dc=ungleich,dc=ch') +LDAP_USER_DN = config('LDAP_USER_DN', default='ou=customer,dc=ungleich,dc=ch') if config('ENABLE_DEBUG_LOG', cast=bool, default=False): loggers_dict = {}