diff options
Diffstat (limited to 'perl-install/devices.pm')
-rw-r--r-- | perl-install/devices.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/devices.pm b/perl-install/devices.pm index f94362770..c088e2a6f 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 { |