summaryrefslogtreecommitdiff
path: root/ironic/drivers
diff options
context:
space:
mode:
authorJulia Kreger <juliaashleykreger@gmail.com>2022-07-26 07:40:24 -0700
committerJulia Kreger <juliaashleykreger@gmail.com>2022-08-17 09:50:39 -0700
commitc921c077d482eba20ff1864b52eafe5b26d0caa2 (patch)
treedcfb6fd70eba52561bb0f6ac81094462353d86f8 /ironic/drivers
parentc861423eb5acf9a1d8f3704bd4552e798731166e (diff)
downloadironic-c921c077d482eba20ff1864b52eafe5b26d0caa2.tar.gz
Fix ilo boot interface order
This change aligns the boot interface order of the ilo hardware type to match the other hardware type interface order lists. This change is a result of an operator reporting inconsistent behavior of ironic when they are adding nodes using the ilo hardware type, where they would default to use the "pxe" boot interface, where as the other interfaces would end up defaulting to "ipxe". Change-Id: I3d848af284545a7a1fb1e065f09fe2df6a9114ac
Diffstat (limited to 'ironic/drivers')
-rw-r--r--ironic/drivers/ilo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/drivers/ilo.py b/ironic/drivers/ilo.py
index 10676b411..d8bbafb9e 100644
--- a/ironic/drivers/ilo.py
+++ b/ironic/drivers/ilo.py
@@ -37,7 +37,7 @@ class IloHardware(generic.GenericHardware):
@property
def supported_boot_interfaces(self):
"""List of supported boot interfaces."""
- return [boot.IloVirtualMediaBoot, boot.IloPXEBoot, boot.IloiPXEBoot]
+ return [boot.IloVirtualMediaBoot, boot.IloiPXEBoot, boot.IloPXEBoot]
@property
def supported_bios_interfaces(self):