Change UEFI boot order - HewlettPackard/python-ilorest-library GitHub Wiki

If not created already, create an instance of Rest or Redfish Object using the RestObject or RedfishObject class respectively. The class constructor takes iLO hostname/ ip address, iLO login username and password as arguments. The class also initializes a login session, gets systems resources and message registries.

Rest Object creation:

:

Redfish Object creation:

:

Example 7: Change UEFI boot order

The method ex7_change_boot_order takes an instance of rest object (or redfish object if using Redfish API) and BIOS password (default None) as arguments.

:

Find and get the server boot settings URI(s) from the system resource collection.

:

Send a HTTP GET request to the server boot settings URI(s) retrieved.

:

Get the boot order from the response body.

Set up PATCH request body.

:

PATCH request is sent next and response error is handled if any.

:

A successful PATCH response will set the Boot order in BIOS, however the settings remain pending until next reboot.

⚠️ **GitHub.com Fallback** ⚠️