mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-06-14 19:37:26 +00:00
fix lvremove call: avoid 'Not a CODE reference' warning
This commit is contained in:
parent
684bcdd7a4
commit
3f05af61ff
2
Makefile
2
Makefile
@ -2,7 +2,7 @@ RELEASE=2.0
|
||||
|
||||
VERSION=2.0
|
||||
PACKAGE=qemu-server
|
||||
PKGREL=22
|
||||
PKGREL=23
|
||||
|
||||
DESTDIR=
|
||||
PREFIX=/usr
|
||||
|
@ -257,10 +257,10 @@ sub snapshot_free {
|
||||
my $scfg = PVE::Storage::storage_config ($self->{storecfg}, $storeid);
|
||||
# lock shared storage
|
||||
return PVE::Storage::cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
|
||||
PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => {});
|
||||
PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => sub {});
|
||||
});
|
||||
} else {
|
||||
PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => {});
|
||||
PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => sub {});
|
||||
}
|
||||
};
|
||||
my $err = $@;
|
||||
|
@ -1,3 +1,9 @@
|
||||
qemu-server (2.0-23) unstable; urgency=low
|
||||
|
||||
* fix lvremove call: avoid 'Not a CODE reference' warning
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Thu, 01 Mar 2012 06:36:33 +0100
|
||||
|
||||
qemu-server (2.0-22) unstable; urgency=low
|
||||
|
||||
* revert tablet mice fix - does not work reliable
|
||||
|
Loading…
Reference in New Issue
Block a user