Allow defining several search configs for LDAP users and groups
This change modifies the TOML parsing behaviour to accept something like either… [ldap.groupz] type = "posixGroup" search = { base = "ou=Groups,dc=example,dc=com" } …or… [ldap.groupz] type = "posixGroup" search = [ { base = "ou=Groups,dc=example,dc=com" }, { base = "ou=Groups,dc=example2,dc=com" } ] …or… [ldap.groupz] type = "posixGroup" [[ldap.groups.search]] base = "ou=Groups,dc=example,dc=com" [[ldap.groups.search]] base = "ou=Groups,dc=example2,dc=com"
parent
0ce629ab
No related branches found
No related tags found
Loading
Please register or sign in to comment