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 <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2015-07-29 11:00:35 +02:00 committed by Dietmar Maurer
parent 525814b230
commit 663d664130

View File

@ -318,7 +318,7 @@ sub archive {
my $backup_cb = sub {
my ($vmid, $resp) = @_;
$uuid = $resp->{return};
$uuid = $resp->{return}->{UUID};
};
my $outfh;