plugins : add volume_resize

this add qemu-img resize for file devices (raw - qcow2) if vm is offline.

otherwise we need to use online qmp block_resize

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
Alexandre Derumier
2012-08-06 11:57:27 +02:00
committed by Dietmar Maurer
parent 7e6c05dc2c
commit 81f5058c01

View File

@ -488,6 +488,22 @@ sub volume_size_info {
}
sub volume_resize {
my ($class, $scfg, $storeid, $volname, $size, $running) = @_;
die "can't resize this image format" if $volname !~ m/\.(raw|qcow2)$/;
return 1 if $running;
my $path = $class->path($scfg, $volname);
my $cmd = ['/usr/bin/qemu-img', 'resize', $path , $size];
run_command($cmd, timeout => 1);
return undef;
}
sub list_images {
my ($class, $storeid, $scfg, $vmid, $vollist, $cache) = @_;