git://git.onelab.eu
/
tests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36752bc
)
clean up
author
Tony Mack
<tmack@cs.princeton.edu>
Mon, 28 Jan 2008 23:43:33 +0000
(23:43 +0000)
committer
Tony Mack
<tmack@cs.princeton.edu>
Mon, 28 Jan 2008 23:43:33 +0000
(23:43 +0000)
qaapi/qa/tests/boot_node.py
patch
|
blob
|
history
diff --git
a/qaapi/qa/tests/boot_node.py
b/qaapi/qa/tests/boot_node.py
index
8e7c6c4
..
036ab9c
100644
(file)
--- 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)