mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-5625: removed unnecessary global setting 'ldap.realname.attribute'
This commit is contained in:
parent
bc677e2a99
commit
c2b5addaed
|
|
@ -54,7 +54,6 @@ class Services:
|
|||
{
|
||||
"basedn": "dc=cloudstack,dc=org",
|
||||
"emailAttribute": "mail",
|
||||
"realnameAttribute": "cn",
|
||||
"userObject": "inetOrgPerson",
|
||||
"usernameAttribute": "uid",
|
||||
"hostname": "localhost",
|
||||
|
|
@ -179,14 +178,6 @@ class TestLdap(cloudstackTestCase):
|
|||
updateConfigurationResponse = self.apiClient.updateConfiguration(updateConfigurationCmd)
|
||||
self.debug("updated the parameter %s with value %s"%(updateConfigurationResponse.name, updateConfigurationResponse.value))
|
||||
|
||||
|
||||
updateConfigurationCmd = updateConfiguration.updateConfigurationCmd()
|
||||
updateConfigurationCmd.name = "ldap.realname.attribute"
|
||||
updateConfigurationCmd.value = ldapConfiguration['realnameAttribute']
|
||||
updateConfigurationResponse = self.apiClient.updateConfiguration(updateConfigurationCmd)
|
||||
self.debug("updated the parameter %s with value %s"%(updateConfigurationResponse.name, updateConfigurationResponse.value))
|
||||
|
||||
|
||||
updateConfigurationCmd = updateConfiguration.updateConfigurationCmd()
|
||||
updateConfigurationCmd.name = "ldap.user.object"
|
||||
updateConfigurationCmd.value = ldapConfiguration['userObject']
|
||||
|
|
|
|||
Loading…
Reference in New Issue