From 236b47f5fcf5b70a6156b495dfc2e517d4d21abc Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 13 Jun 2005 05:34:30 +0000 Subject: fsedit::is_same_hd is now fs:get::is_same_hd --- perl-install/fsedit.pm | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'perl-install/fsedit.pm') diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 6b10c9503..555b339d0 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -244,20 +244,6 @@ Do you agree to lose all the partitions? $all_hds; } -sub is_same_hd { - my ($hd1, $hd2) = @_; - if ($hd1->{major} && $hd2->{major}) { - $hd1->{major} == $hd2->{major} && $hd1->{minor} == $hd2->{minor}; - } elsif (my ($s1) = $hd1->{device} =~ m|https?://(.+?)/*$|) { - my ($s2) = $hd2->{device} =~ m|https?://(.+?)/*$|; - $s1 eq $s2; - } else { - $hd1->{devfs_device} && $hd2->{devfs_device} && $hd1->{devfs_device} eq $hd2->{devfs_device} - || $hd1->{device_LABEL} && $hd2->{device_LABEL} && $hd1->{device_LABEL} eq $hd2->{device_LABEL} - || $hd1->{device} && $hd2->{device} && $hd1->{device} eq $hd2->{device}; - } -} - #- are_same_partitions() do not look at the device name since things may have changed sub are_same_partitions { my ($part1, $part2) = @_; -- cgit v1.2.1