mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-05-01 08:05:24 +00:00
bug fix: allow to set devices directly (-ide1 /dev/XYZ)
This commit is contained in:
parent
2a7993d9ef
commit
eabe0da02d
2
Makefile
2
Makefile
@ -2,7 +2,7 @@ RELEASE=2.1
|
||||
|
||||
VERSION=2.0
|
||||
PACKAGE=qemu-server
|
||||
PKGREL=45
|
||||
PKGREL=46
|
||||
|
||||
DESTDIR=
|
||||
PREFIX=/usr
|
||||
|
@ -85,21 +85,25 @@ my $create_disks = sub {
|
||||
delete $disk->{format}; # no longer needed
|
||||
$res->{$ds} = PVE::QemuServer::print_drive($vmid, $disk);
|
||||
} else {
|
||||
my $path = $rpcenv->check_volume_access($authuser, $storecfg, $vmid, $volid);
|
||||
PVE::Storage::activate_volumes($storecfg, [ $volid ])
|
||||
if PVE::Storage::parse_volume_id ($volid, 1);
|
||||
|
||||
my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid);
|
||||
my $dl = PVE::Storage::vdisk_list($storecfg, $storeid, undef);
|
||||
my $path = $rpcenv->check_volume_access($authuser, $storecfg, $vmid, $volid);
|
||||
|
||||
my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
|
||||
|
||||
my $foundvolid = undef;
|
||||
|
||||
PVE::Storage::foreach_volid($dl, sub {
|
||||
my ($volumeid) = @_;
|
||||
if($volumeid eq $volid) {
|
||||
$foundvolid = 1;
|
||||
return;
|
||||
}
|
||||
});
|
||||
if ($storeid) {
|
||||
PVE::Storage::activate_volumes($storecfg, [ $volid ]);
|
||||
my $dl = PVE::Storage::vdisk_list($storecfg, $storeid, undef);
|
||||
|
||||
PVE::Storage::foreach_volid($dl, sub {
|
||||
my ($volumeid) = @_;
|
||||
if($volumeid eq $volid) {
|
||||
$foundvolid = 1;
|
||||
return;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
die "image '$path' does not exists\n" if (!(-f $path || -b $path || $foundvolid));
|
||||
$res->{$ds} = $settings->{$ds};
|
||||
|
@ -1,3 +1,9 @@
|
||||
qemu-server (2.0-46) unstable; urgency=low
|
||||
|
||||
* bug fix: allow to set devices directly (-ide1 /dev/XYZ)
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Fri, 27 Jul 2012 11:59:14 +0200
|
||||
|
||||
qemu-server (2.0-45) unstable; urgency=low
|
||||
|
||||
* migrate: only scan available storages
|
||||
|
Loading…
Reference in New Issue
Block a user