Update ris module to be consistent with operations

Change-Id: I5ee38b6b38ee4be296d52db62b20f301d9ccf92f
This commit is contained in:
Anusha Ramineni 2015-02-17 19:49:06 +05:30
parent fe5bcccfe2
commit 36b3f22dc2
1 changed files with 2 additions and 2 deletions

View File

@ -118,11 +118,11 @@ class IloOperations:
"""Updates persistent boot based on the boot mode."""
raise exception.IloCommandNotSupportedError(ERRMSG)
def get_secure_boot_state(self):
def get_secure_boot_mode(self):
"""Get the status if secure boot is enabled or not."""
raise exception.IloCommandNotSupportedError(ERRMSG)
def set_secure_boot_state(self, secure_boot_enable):
def set_secure_boot_mode(self, secure_boot_enable):
"""Enable/Disable secure boot on the server."""
raise exception.IloCommandNotSupportedError(ERRMSG)