X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ta%2Fremote-installer.git;a=blobdiff_plain;f=src%2Fremoteinstaller%2Finstaller%2Fbmc_management%2Ffalcon.py;h=ae67d5caf9d767d7d369853494355a84f1f02f48;hp=34b3e42237a8013362588ecaf23235f891e05987;hb=bd5d48582c682f3802f4707578b3b06adf650ccf;hpb=f67d243ed72be60eb02dacad2584eb189cf6f4b7 diff --git a/src/remoteinstaller/installer/bmc_management/falcon.py b/src/remoteinstaller/installer/bmc_management/falcon.py index 34b3e42..ae67d5c 100644 --- a/src/remoteinstaller/installer/bmc_management/falcon.py +++ b/src/remoteinstaller/installer/bmc_management/falcon.py @@ -15,7 +15,7 @@ import logging import time -from .bmctools import BMC +from .bmctools import BMC, BMCException RAW_CHECK_NFS_SERVICE_STATUS = '0x32 0xd8 0x06 0x01 0x01 0x00' @@ -45,9 +45,6 @@ RAW_GET_MOUNTED_IMG_COUNT = '0x32 0xd8 0x00 0x01' RAW_SET_IMG_NAME = '0x32 0xd7 0x01 0x01 0x01 0x01 %s' RAW_STOP_REDIRECT = '0x32 0xd7 0x01 0x01 0x01 0x00 %s' -class BMCException(Exception): - pass - class FALCON(BMC): def __init__(self, host, user, passwd, priv_level='ADMINISTRATOR', log_path=None): super(FALCON, self).__init__(host, user, passwd, priv_level, log_path)