diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 05:34:30 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 05:34:30 +0000 |
commit | 236b47f5fcf5b70a6156b495dfc2e517d4d21abc (patch) | |
tree | 5e87a891cf5058d8c52021370c0ef79697a182fe /perl-install/fsedit.pm | |
parent | 0935fb7e249568209af72cce0094feee6a11036c (diff) | |
download | drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.gz drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.bz2 drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.xz drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.zip |
fsedit::is_same_hd is now fs:get::is_same_hd
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 14 |
1 files changed, 0 insertions, 14 deletions
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) = @_; |