From 36b3f22dc2d2b6e34e0106f3fbe2e5ffbe098f76 Mon Sep 17 00:00:00 2001 From: Anusha Ramineni Date: Tue, 17 Feb 2015 19:49:06 +0530 Subject: [PATCH] Update ris module to be consistent with operations Change-Id: I5ee38b6b38ee4be296d52db62b20f301d9ccf92f --- proliantutils/ilo/operations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proliantutils/ilo/operations.py b/proliantutils/ilo/operations.py index f01491e8..c32775f3 100644 --- a/proliantutils/ilo/operations.py +++ b/proliantutils/ilo/operations.py @@ -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)