diff --git a/PVE/Storage/LVMPlugin.pm b/PVE/Storage/LVMPlugin.pm index 73e8e48..df49b76 100644 --- a/PVE/Storage/LVMPlugin.pm +++ b/PVE/Storage/LVMPlugin.pm @@ -446,7 +446,8 @@ sub list_images { next if $scfg->{tagged_only} && !&$check_tags($info->{tags}); - next if $info->{lv_type} ne '-'; + # Allow mirrored and RAID LVs + next if $info->{lv_type} !~ m/^[-mMrR]$/; my $volid = "$storeid:$volname";