| commit | 8a07d286c0af4a6e17b2a41492a46e25c036d2b9 | [log] [tgz] |
|---|---|---|
| author | Ratan Gupta <ratagupt@linux.vnet.ibm.com> | Sat Mar 16 08:33:47 2019 +0530 |
| committer | Ed Tanous <ed.tanous@intel.com> | Thu May 23 21:27:16 2019 +0000 |
| tree | 32297aebffe3f6e27a03a29e1a8afb26454562e6 | |
| parent | 6973a5828894d8c4ff04650f9b40ce6b376a5226 [diff] |
Redfish(Account): Support the patch for individual properties for LDAP
This commit supports the patch of individual properties under LDAP.
Tested by:
Ldap Config not exist
1) Run the redfish validator tool
2) PATCH the authentication, auth type, username property
Keep getting the message what is missing.
3) PATCH with all the required properties.
Ldap Config Exist
4) Run the redfish validator tool
5) PATCH the service address property
6) PATCH Auth type, account providertype
7) PATCH user name
8) PATCH multiple properties
Detailed test reults are at the following location
https://pastebin.com/ibX5nyAc
Change-Id: Ib09c7765f86f626d3b74b5ba7a3e7a97cedb4acf
Signed-off-by: Ratan Gupta <ratagupt@linux.vnet.ibm.com>
This component attempts to be a "do everything" embedded webserver for openbmc.
At this time, the webserver implements a few interfaces:
BMCWeb is configured by setting -D flags that correspond to options in bmcweb/CMakeLists.txt and then compiling. For example, cmake -DBMCWEB_ENABLE_KVM=NO ... followed by make. The option names become C++ preprocessor symbols that control which code is compiled into the program.
When BMCWeb starts running, it reads persistent configuration data (such as UUID and session data) from a local file. If this is not usable, it generates a new configuration.
When BMCWeb SSL support is enabled and a usable certificate is not found, it will generate a self-sign a certificate before launching the server. The keys are generated by the prime256v1 algorithm. The certificate
C=US, O=OpenBMC, CN=testhost,SHA-256 algorithm.The crow project has had a number of additions to make it more useful for use in the OpenBmc Project. A non-exhaustive list is below. At the time of this writing, the crow project is not accepting patches, so for the time being crow will simply be checked in as is.