]> git.proxmox.com Git - pve-storage.git/blobdiff - PVE/Storage/LVMPlugin.pm
lvm: Fix #3159: Show RAID LVs as storage content
[pve-storage.git] / PVE / Storage / LVMPlugin.pm
index 73e8e487a397e24022d274fb5ef0870e16847ae1..df49b765fb1eaa8162b1a48c1814ae0c2d2fc246 100644 (file)
@@ -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";