diff --git a/lib/backend.py b/lib/backend.py index c11872e93a77677e1e71a9a94ccd6dc7894ff08e..d52b3552be724fbd3ef2481f81cce861b35ef924 100644 --- a/lib/backend.py +++ b/lib/backend.py @@ -1347,6 +1347,10 @@ def ExportSnapshot(disk, dest_node, instance, cluster_name): True if successful, False otherwise. """ + # TODO(ultrotter): Import/Export still to be converted to OS API 10 + logging.error("Import/Export still to be converted to OS API 10") + return False + inst_os = OSFromDisk(instance.os) export_script = inst_os.export_script @@ -1494,6 +1498,10 @@ def ImportOSIntoInstance(instance, os_disk, swap_disk, src_node, src_image, False in case of error, True otherwise. """ + # TODO(ultrotter): Import/Export still to be converted to OS API 10 + logging.error("Import/Export still to be converted to OS API 10") + return False + inst_os = OSFromDisk(instance.os) import_script = inst_os.import_script