[pve-devel] [PATCH 2/7] qmpclient-qga : add qga option at object creation

2013-03-17 Thread Alexandre Derumier
Signed-off-by: Alexandre Derumier aderum...@odiso.com --- PVE/QMPClient.pm |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PVE/QMPClient.pm b/PVE/QMPClient.pm index 6782c37..e5d4356 100755 --- a/PVE/QMPClient.pm +++ b/PVE/QMPClient.pm @@ -19,7 +19,7 @@ use Data::Dumper;

[pve-devel] add qemu guest agent command support

2013-03-17 Thread Alexandre Derumier
This patch series add code to send command to quest guest agent. The procotol is qmp, so I have reuse as much as possible the current qmpclient the only big difference is that we can't pass an id to a request, so we must send a guest-sync command with an id before the real command command

[pve-devel] [PATCH 1/7] add vm_qga_command

2013-03-17 Thread Alexandre Derumier
and reuse vm_qmp_command qmp_socket with $qga param Signed-off-by: Alexandre Derumier aderum...@odiso.com --- PVE/QemuServer.pm | 20 ++-- 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index eba9aed..8c4a1a1 100644 ---