mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-08-15 14:15:57 +00:00
code cleanup, bump version to 2.0-44
This commit is contained in:
parent
80b2cbd1b9
commit
522c8f97d7
2
Makefile
2
Makefile
@ -2,7 +2,7 @@ RELEASE=2.1
|
|||||||
|
|
||||||
VERSION=2.0
|
VERSION=2.0
|
||||||
PACKAGE=qemu-server
|
PACKAGE=qemu-server
|
||||||
PKGREL=43
|
PKGREL=44
|
||||||
|
|
||||||
DESTDIR=
|
DESTDIR=
|
||||||
PREFIX=/usr
|
PREFIX=/usr
|
||||||
|
@ -177,9 +177,10 @@ sub sync_disks {
|
|||||||
my $volhash = {};
|
my $volhash = {};
|
||||||
my $cdromhash = {};
|
my $cdromhash = {};
|
||||||
|
|
||||||
my $ids = $self->{storecfg}->{ids};
|
my @sids = PVE::Storage::storage_ids($self->{storecfg});
|
||||||
foreach my $storeid (keys %$ids) {
|
foreach my $storeid (@sids) {
|
||||||
next if $ids->{$storeid}->{shared};
|
my $scfg = PVE::Storage::storage_config($self->{storecfg}, $storeid);
|
||||||
|
next if $scfg->{shared};
|
||||||
# get list from PVE::Storage (for unused volumes)
|
# get list from PVE::Storage (for unused volumes)
|
||||||
my $dl = PVE::Storage::vdisk_list($self->{storecfg}, $storeid, $vmid);
|
my $dl = PVE::Storage::vdisk_list($self->{storecfg}, $storeid, $vmid);
|
||||||
PVE::Storage::foreach_volid($dl, sub {
|
PVE::Storage::foreach_volid($dl, sub {
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
qemu-server (2.0-44) unstable; urgency=low
|
||||||
|
|
||||||
|
* migrate: only scan necessary storage for unused volumes
|
||||||
|
|
||||||
|
-- Proxmox Support Team <support@proxmox.com> Mon, 16 Jul 2012 06:59:23 +0200
|
||||||
|
|
||||||
qemu-server (2.0-43) unstable; urgency=low
|
qemu-server (2.0-43) unstable; urgency=low
|
||||||
|
|
||||||
* use new QMPClient code
|
* use new QMPClient code
|
||||||
|
Loading…
Reference in New Issue
Block a user