예제 #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
 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
 def clear_system_configuration(self):
     raise exc.UnsupportedFunctionality(
         'Clearing system configuration not implemented for this platform')
예제 #13
0
 def apply_license(self, filename, progress=None):
     raise exc.UnsupportedFunctionality()
예제 #14
0
 def get_licenses(self):
     raise exc.UnsupportedFunctionality()
예제 #15
0
    def get_hostname(self):
        """OEM specific hook to specify name information

        """
        raise exc.UnsupportedFunctionality()