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:
parent
445f06cdb1
commit
075b417acd
2
Makefile
2
Makefile
@ -2,7 +2,7 @@ RELEASE=2.2
|
||||
|
||||
VERSION=2.0
|
||||
PACKAGE=qemu-server
|
||||
PKGREL=67
|
||||
PKGREL=68
|
||||
|
||||
DESTDIR=
|
||||
PREFIX=/usr
|
||||
|
@ -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};
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user