mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-08-12 21:28:59 +00: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
|
VERSION=2.0
|
||||||
PACKAGE=qemu-server
|
PACKAGE=qemu-server
|
||||||
PKGREL=67
|
PKGREL=68
|
||||||
|
|
||||||
DESTDIR=
|
DESTDIR=
|
||||||
PREFIX=/usr
|
PREFIX=/usr
|
||||||
|
@ -83,7 +83,8 @@ sub prepare {
|
|||||||
|
|
||||||
PVE::Storage::activate_volumes($self->{storecfg}, $vollist);
|
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};
|
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
|
qemu-server (2.0-67) unstable; urgency=low
|
||||||
|
|
||||||
* fix allocation size in qmrestore
|
* fix allocation size in qmrestore
|
||||||
|
Loading…
Reference in New Issue
Block a user