5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-02-02 09:47:13 +03:00

vzdump: store drive in correct order (sort) to avoid confusion

This commit is contained in:
Dietmar Maurer 2012-11-05 06:26:25 +01:00
parent 445f06cdb1
commit 075b417acd
3 changed files with 9 additions and 2 deletions

View File

@ -2,7 +2,7 @@ RELEASE=2.2
VERSION=2.0
PACKAGE=qemu-server
PKGREL=67
PKGREL=68
DESTDIR=
PREFIX=/usr

View File

@ -83,7 +83,8 @@ sub prepare {
PVE::Storage::activate_volumes($self->{storecfg}, $vollist);
while (my ($ds, $drive) = each %$drivehash) {
foreach my $ds (sort keys %$drivehash) {
my $drive = $drivehash->{$ds};
my $volid = $drive->{file};

View File

@ -1,3 +1,9 @@
qemu-server (2.0-68) unstable; urgency=low
* vzdump: store drive in correct order (sort) to avoid confusion
-- Proxmox Support Team <support@proxmox.com> Mon, 05 Nov 2012 06:25:33 +0100
qemu-server (2.0-67) unstable; urgency=low
* fix allocation size in qmrestore