path: corretly implement path to snapshots

This commit is contained in:
Dietmar Maurer
2015-08-27 12:03:46 +02:00
parent 1f79bb07f1
commit e67069eb58
8 changed files with 37 additions and 12 deletions

View File

@ -141,7 +141,7 @@ sub parse_volname {
# virtual zfs methods (subclass can overwrite them)
sub path {
my ($class, $scfg, $volname) = @_;
my ($class, $scfg, $volname, $storeid, $snapname) = @_;
my ($vtype, $name, $vmid) = $class->parse_volname($volname);
@ -154,6 +154,7 @@ sub path {
} else {
$path = "/dev/zvol/$scfg->{pool}/$volname";
}
$path .= "\@$snapname" if defined($snapname);
} else {
die "$vtype is not allowed in ZFSPool!";
}