From 663d66413048f32f401224178bc96a81f1a2ec63 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 29 Jul 2015 11:00:35 +0200 Subject: [PATCH] Fixed wrong UUID in Qemu VZDump backup As the format of the uuid which the qemu monitor returned changed, it is here adapted to fix errors with not matching uuids. Signed-off-by: Thomas Lamprecht --- PVE/VZDump/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/VZDump/QemuServer.pm b/PVE/VZDump/QemuServer.pm index 64146e88..66f00b5f 100644 --- a/PVE/VZDump/QemuServer.pm +++ b/PVE/VZDump/QemuServer.pm @@ -318,7 +318,7 @@ sub archive { my $backup_cb = sub { my ($vmid, $resp) = @_; - $uuid = $resp->{return}; + $uuid = $resp->{return}->{UUID}; }; my $outfh;