Configurable server_url for ldap server

This commit is contained in:
Tobias Herre 2020-08-25 14:35:41 +02:00
parent 03f691d38d
commit d834848967
2 changed files with 7 additions and 3 deletions

View File

@ -125,8 +125,10 @@ class wmdeit_ldap::lam(
default => $spw default => $spw
}, },
server_url => $conf['server_url'] ? {
undef => "",
default => 'ldap://localhost:389'
},
} }
} }
@ -147,6 +149,8 @@ define wmdeit_ldap::lam::config
$login_search_dn = "", $login_search_dn = "",
$login_search_filter = "", $login_search_filter = "",
$login_search_password = "", $login_search_password = "",
$server_url ,
){ ){
if (!$suffix_user) or (!$suffix_group) { if (!$suffix_user) or (!$suffix_group) {

View File

@ -5,7 +5,7 @@
################################################################################################### ###################################################################################################
# server address (e.g. ldap://localhost:389 or ldaps://localhost:636) # server address (e.g. ldap://localhost:389 or ldaps://localhost:636)
ServerURL: ldap://localhost:389 ServerURL: <%= @server_url %>
# list of users who are allowed to use LDAP Account Manager # list of users who are allowed to use LDAP Account Manager
# names have to be seperated by semicolons # names have to be seperated by semicolons