From: Tony Mack Date: Mon, 28 Jan 2008 23:43:33 +0000 (+0000) Subject: clean up X-Git-Tag: 2008-02-11-last-vmware-support~78 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=f5119017fcfdd69000f73c124378e23e4b8060a2;p=tests.git clean up --- diff --git a/qaapi/qa/tests/boot_node.py b/qaapi/qa/tests/boot_node.py index 8e7c6c4..036ab9c 100644 --- a/qaapi/qa/tests/boot_node.py +++ b/qaapi/qa/tests/boot_node.py @@ -52,18 +52,6 @@ class boot_node(Test): return 1 - def get_image_medium(self, hostname, image_type, path): - api = self.config.api - auth = self.config.auth - - file = open(path, 'w') - if image-type in ['node-floppy', 'node-iso', 'node-usb', 'generic-iso', 'generic-usb']: - image = api.GetBootMedium(auth, hostname, image_type, '') - image = base64.b64.decode(image) - - file.write(image) - file.close() - if __name__ == '__main__': args = tuple(sys.argv[1:]) boot_node()(*args)