]> Git Repo - qemu.git/commitdiff
QMP: Drop vm-info example script
authorLuiz Capitulino <[email protected]>
Wed, 27 Oct 2010 20:03:01 +0000 (18:03 -0200)
committerLuiz Capitulino <[email protected]>
Wed, 17 Nov 2010 11:51:07 +0000 (09:51 -0200)
It's broken and not really useful, let's just drop it.

Signed-off-by: Luiz Capitulino <[email protected]>
QMP/README
QMP/vm-info [deleted file]

index 80503f2d7a9a53af32aff6bcec48fb8e15f5c168..c95a08c23416d3459b765ea477a3767087dc3ce9 100644 (file)
@@ -19,10 +19,7 @@ o qmp-spec.txt      QEMU Monitor Protocol current specification
 o qmp-commands.txt  QMP supported commands (auto-generated at build-time)
 o qmp-events.txt    List of available asynchronous events
 
-There are also two simple Python scripts available:
-
-o qmp-shell  A shell
-o vm-info    Show some information about the Virtual Machine
+There is also a simple Python script called 'qmp-shell' available.
 
 IMPORTANT: It's strongly recommended to read the 'Stability Considerations'
 section in the qmp-commands.txt file before making any serious use of QMP.
diff --git a/QMP/vm-info b/QMP/vm-info
deleted file mode 100755 (executable)
index be5b038..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/python
-#
-# Print Virtual Machine information
-#
-# Usage:
-#
-# Start QEMU with:
-#
-# $ qemu [...] -monitor control,unix:./qmp,server
-#
-# Run vm-info:
-#
-# $ vm-info ./qmp
-#
-# Luiz Capitulino <[email protected]>
-
-import qmp
-from sys import argv,exit
-
-def main():
-    if len(argv) != 2:
-        print 'vm-info <unix-socket>'
-        exit(1)
-
-    qemu = qmp.QEMUMonitorProtocol(argv[1])
-    qemu.connect()
-    qemu.send("qmp_capabilities")
-
-    for cmd in [ 'version', 'kvm', 'status', 'uuid', 'balloon' ]:
-        print cmd + ': ' + str(qemu.send('query-' + cmd))
-
-if __name__ == '__main__':
-    main()
This page took 0.027444 seconds and 4 git commands to generate.