Skip to content

Commit ce072f4

Browse files
authored
settings: Configure LDAP group settings as arrays.
Currently LDAP group settings are being treat as string, they should be treated as array so we could configure it correctly while executing on `docker` or `kubernetes`.
1 parent 43438bf commit ce072f4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

entrypoint.sh

+3
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,11 @@ zulipConfiguration() {
268268
# Zulip settings.py / zproject specific overrides here
269269
if [ "$setting_key" = "AUTH_LDAP_CONNECTION_OPTIONS" ] || \
270270
[ "$setting_key" = "AUTH_LDAP_USER_SEARCH" ] || \
271+
[ "$setting_key" = "AUTH_LDAP_GROUP_SEARCH" ] || \
271272
[ "$setting_key" = "AUTH_LDAP_REVERSE_EMAIL_SEARCH" ] || \
272273
[ "$setting_key" = "AUTH_LDAP_USER_ATTR_MAP" ] || \
274+
[ "$setting_key" = "AUTH_LDAP_USER_FLAGS_BY_GROUP" ] || \
275+
[ "$setting_key" = "AUTH_LDAP_GROUP_TYPE" ] || \
273276
{ [ "$setting_key" = "LDAP_APPEND_DOMAIN" ] && [ "$setting_var" = "None" ]; } || \
274277
[ "$setting_key" = "SECURE_PROXY_SSL_HEADER" ] || \
275278
[[ "$setting_key" = "CSRF_"* ]] || \

0 commit comments

Comments
 (0)