Lines Matching refs:device
169 "device to the BMC each time the server "
172 "device across power cycles; default value "
349 This uses the lanplus interface to communicate with the BMC device driver.
1599 boot device to pxe and reboot the physical node.
1617 # Set boot device to PXE network boot
1643 Reset boot device or bootmode script and power off the node.
1989 def set_boot_device(self, task, device, persistent=False):
1990 """Set the boot device for the task's node.
1992 Set the boot device to use on next reboot of the node.
1995 :param device: the boot device, one of
1997 :param persistent: Boolean value. True if the boot device will
2000 :raises: InvalidParameterValue if an invalid boot device is specified
2005 LOG.debug("SolarisManagement.set_boot_device: %s" % device)
2014 device,
2021 if device not in self.get_supported_boot_devices(task=task):
2023 "Invalid boot device %s specified.") % device)
2024 cmd = ["chassis", "bootdev", device]
2029 if device == boot_devices.WANBOOT:
2062 elif device == boot_devices.DISK:
2067 "Invalid boot device %s specified.") % (device))
2077 LOG.warning(_LW('IPMI set boot device failed for node %(node)s '
2085 """Get the current boot device for the task's node.
2087 Returns the current boot device of the node.
2096 :boot_device: the boot device, one of
2098 :persistent: Whether the boot device will persist to all
2130 LOG.warning(_LW('IPMI get boot device failed for node %(node)s '