storage : add volume_snapshot

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
Alexandre Derumier
2012-09-06 10:27:51 +02:00
committed by Dietmar Maurer
parent 8a92bc4fe4
commit db60719cde

View File

@ -138,6 +138,21 @@ sub volume_resize {
}
}
sub volume_snapshot {
my ($cfg, $volid, $snap, $running) = @_;
my ($storeid, $volname) = parse_volume_id($volid, 1);
if ($storeid) {
my $scfg = storage_config($cfg, $storeid);
my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
return $plugin->volume_snapshot($scfg, $storeid, $volname, $snap, $running);
} elsif ($volid =~ m|^(/.+)$| && -e $volid) {
die "snapshot device is not possible";
} else {
die "can't snapshot";
}
}
sub get_image_dir {
my ($cfg, $storeid, $vmid) = @_;