summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/devices.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/devices.pm b/perl-install/devices.pm
index 81270b09d..ad72d2856 100644
--- a/perl-install/devices.pm
+++ b/perl-install/devices.pm
@@ -198,7 +198,7 @@ sub make($) {
sub simple_partition_scan {
my ($part) = @_;
- $part->{device} =~ /([hs]d[a-z])(\d+)$/;
+ $part->{device} =~ /([vhs]d[a-z])(\d+)$/;
}
sub part_number {
my ($part) = @_;
@@ -216,7 +216,7 @@ sub prefix_for_dev {
sub should_prefer_UUID {
my ($dev) = @_;
- $dev =~ /^(hd|sd)/;
+ $dev =~ /^(hd|sd|vd)/;
}
sub symlink_now_and_register {