| Submitter | Luiz Capitulino |
|---|---|
| Date | July 1, 2010, 7:21 p.m. |
| Message ID | <1278012111-26227-5-git-send-email-lcapitulino@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/57577/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/QMP/qmp-shell b/QMP/qmp-shell index f89b9af..a5b72d1 100755 --- a/QMP/qmp-shell +++ b/QMP/qmp-shell @@ -42,6 +42,7 @@ def main(): qemu = qmp.QEMUMonitorProtocol(argv[1]) qemu.connect() + qemu.send("qmp_capabilities") print 'Connected!' diff --git a/QMP/vm-info b/QMP/vm-info index 8ebaeb3..be5b038 100755 --- a/QMP/vm-info +++ b/QMP/vm-info @@ -24,6 +24,7 @@ def main(): 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))