コード例 #1
0
    def set_system_configuration(self, changeset):
        """Apply a changeset to system configuration

        Takes a key value pair and applies it against the system configuration
        """
        raise exc.UnsupportedFunctionality()
コード例 #2
0
 def detach_remote_media(self):
     raise exc.UnsupportedFunctionality()
コード例 #3
0
 def upload_media(self, filename, progress):
     raise exc.UnsupportedFunctionality()
コード例 #4
0
 def list_media(self):
     raise exc.UnsupportedFunctionality()
コード例 #5
0
 def reseat_bay(self, bay):
     raise exc.UnsupportedFunctionality(
         'Bay reseat not supported on this platform')
コード例 #6
0
 def attach_remote_media(self, imagename, username, password):
     raise exc.UnsupportedFunctionality()
コード例 #7
0
 def get_storage_configuration(self):
     raise exc.UnsupportedFunctionality(
         'Remote storage configuration not supported on this platform')
コード例 #8
0
 def update_firmware(self, filename, data=None, progress=None, bank=None):
     raise exc.UnsupportedFunctionality(
         'Firmware update not supported on this platform')
コード例 #9
0
 def clear_storage_arrays(self):
     raise exc.UnsupportedFunctionality(
         'Remote storage configuration not supported on this platform')
コード例 #10
0
 def check_storage_configuration(self, cfgspec):
     raise exc.UnsupportedFunctionality(
         'Remote storage configuration not supported on this platform')
コード例 #11
0
ファイル: handler.py プロジェクト: BobzhouCH/pyghmi_1.0.42
 def set_identify(self, on, duration):
     if on and not duration and self.is_sd350:
         self.ipmicmd.xraw_command(netfn=0x3a, command=6, data=(1, 1))
     else:
         raise pygexc.UnsupportedFunctionality()
コード例 #12
0
ファイル: generic.py プロジェクト: jjohnson42/pyghmi
 def clear_system_configuration(self):
     raise exc.UnsupportedFunctionality(
         'Clearing system configuration not implemented for this platform')
コード例 #13
0
ファイル: generic.py プロジェクト: jjohnson42/pyghmi
 def apply_license(self, filename, progress=None):
     raise exc.UnsupportedFunctionality()
コード例 #14
0
ファイル: generic.py プロジェクト: jjohnson42/pyghmi
 def get_licenses(self):
     raise exc.UnsupportedFunctionality()
コード例 #15
0
ファイル: generic.py プロジェクト: jjohnson42/pyghmi
    def get_hostname(self):
        """OEM specific hook to specify name information

        """
        raise exc.UnsupportedFunctionality()