boot_devices.PXE value should match with pyghmi define
pyghmi ipmicmd.get_bootdev() returns 'network' for pxe boot mode. However ipminative defines 'net' as the name, so it does not match with pyghmi return value. In this patch, we redefine boot_devices.PXE value to 'network' which match pyghmi. Change-Id: Ic19597d2e577098a08e5ca2c5c6f0660200fc1cb Closes-Bug: 1397212
This commit is contained in:
parent
f4b8a285ba
commit
95f17098ca
@ -71,7 +71,7 @@ CONSOLE_PROPERTIES = {
|
||||
|
||||
_BOOT_DEVICES_MAP = {
|
||||
boot_devices.DISK: 'hd',
|
||||
boot_devices.PXE: 'net',
|
||||
boot_devices.PXE: 'network',
|
||||
boot_devices.CDROM: 'cdrom',
|
||||
boot_devices.BIOS: 'setup',
|
||||
}
|
||||
|
@ -298,8 +298,8 @@ class IPMINativeDriverTestCase(db_base.DbTestCase):
|
||||
with task_manager.acquire(self.context,
|
||||
self.node.uuid) as task:
|
||||
self.driver.management.set_boot_device(task, boot_devices.PXE)
|
||||
# PXE is converted to 'net' internally by ipminative
|
||||
ipmicmd.set_bootdev.assert_called_once_with('net', persist=False)
|
||||
# PXE is converted to 'network' internally by ipminative
|
||||
ipmicmd.set_bootdev.assert_called_once_with('network', persist=False)
|
||||
|
||||
def test_set_boot_device_bad_device(self):
|
||||
with task_manager.acquire(self.context, self.node.uuid) as task:
|
||||
|
Loading…
x
Reference in New Issue
Block a user