|
72 | 72 | auth_type:
|
73 | 73 | description: Authorization type.
|
74 | 74 | required: false
|
75 |
| - choices: ['Stored on LDAP', 'Stored on iRMC'] |
| 75 | + choices: ['ServerView LDAP', 'Standard LDAP'] |
76 | 76 | primary_server:
|
77 | 77 | description: Primary LDAP server.
|
78 | 78 | required: false
|
|
190 | 190 | description: authorization type
|
191 | 191 | returned: always
|
192 | 192 | type: string
|
193 |
| - sample: Stored on LDAP |
| 193 | + sample: ServerView LDAP |
194 | 194 | backup_port:
|
195 | 195 | description: non-SL port of backup LDAP server
|
196 | 196 | returned: always
|
|
300 | 300 |
|
301 | 301 | ldap_dir = {"0": "MS Active Directory", "1": "Novell eDirectory", "2": "Sun ePlanet", "3": "OpenLDAP",
|
302 | 302 | "4": "OpenDS / OpenDJ"}
|
303 |
| -ldap_auth = {"0": "Stored on LDAP", "1": "Stored on iRMC"} |
| 303 | +ldap_auth = {"0": "ServerView LDAP", "1": "Standard LDAP"} |
304 | 304 | true_false = {"0": "False", "1": "True"}
|
305 | 305 | param_scci_map = [
|
306 | 306 | # Param, SCCI Name, SCCI Code, index, value dict
|
|
309 | 309 | ["local_login_disabled", "ConfBMCLDAPLocalLoginDisabled", 0x197B, 0, true_false], # iRMC: Disable Local Login
|
310 | 310 | ["always_use_ssl", "ConfBMCLDAPBrowserLoginDisabled", 0x197C, 0, true_false], # iRMC: always use SSL Login
|
311 | 311 | ["directory_type", "ConfBMCLDAPDirectoryType", 0x1974, 0, ldap_dir], # iRMC: Directory Server Type
|
312 |
| - ["auth_type", "ConfLDAPAuthorizationType", 0x1AC0, 0, ldap_auth], # iRMC: Authorization Type |
| 312 | + ["auth_type", "ConfLDAPAuthorizationType", 0x1AC0, 0, ldap_auth], # iRMC: Authorization Type |
313 | 313 | ["primary_server", "ConfBMCLDAPServerName", 0x1976, 0, None], # iRMC: Primary LDAP Server
|
314 | 314 | ["primary_port", "ConfBmcLDAPNonSecurePort", 0x1996, 0, None], # iRMC: Primary LDAP Port
|
315 | 315 | ["primary_ssl_port", "ConfBmcLDAPSecurePort", 0x1997, 0, None], # iRMC: Primary LDAP SSL Port
|
@@ -420,8 +420,7 @@ def main():
|
420 | 420 | directory_type=dict(required=False, type="str",
|
421 | 421 | choices=["MS Active Directory", "Novell eDirectory", "Sun ePlanet", "OpenLDAP",
|
422 | 422 | "OpenDS / OpenDJ"]),
|
423 |
| - auth_type=dict(required=False, type="str", |
424 |
| - choices=["Stored on LDAP", "Stored on iRMC"]), |
| 423 | + auth_type=dict(required=False, type="str", choices=["ServerView LDAP", "Standard LDAP"]), |
425 | 424 | primary_server=dict(required=False, type="str"),
|
426 | 425 | primary_port=dict(required=False, type="int"),
|
427 | 426 | primary_ssl_port=dict(required=False, type="int"),
|
|
0 commit comments