diff --git a/PVE/Storage.pm b/PVE/Storage.pm index edf9a2e..8375a91 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -882,6 +882,8 @@ sub vdisk_list { foreach my $sid (keys %$ids) { next if $storeid && $storeid ne $sid; next if !storage_check_enabled($cfg, $sid, undef, 1); + my $content = $ids->{$sid}->{content}; + next if !($content->{rootdir} || $content->{images}); push @$storage_list, $sid; } }