diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-27 09:58:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-27 09:58:43 +0000 |
commit | dfdf67465048d060f7f86cd70d55cb78b6da15d9 (patch) | |
tree | 421a29bd65b7117bfa0db071ddbb4845b7591b7b /perl-install/fs | |
parent | 06778644fe639e20bf25eae532dc5b002af3a808 (diff) | |
download | drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.tar drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.tar.gz drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.tar.bz2 drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.tar.xz drakx-dfdf67465048d060f7f86cd70d55cb78b6da15d9.zip |
drop Move support (unused for quite a long time and superceeded by Globetrotter
which itself was obsoleted by Mdv One)
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/any.pm | 2 | ||||
-rw-r--r-- | perl-install/fs/mount.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm index 53e526ba1..03abd0573 100644 --- a/perl-install/fs/any.pm +++ b/perl-install/fs/any.pm @@ -13,7 +13,7 @@ sub get_hds { my $probed_all_hds = fsedit::get_hds($partitioning_flags, $o_in); my $hds = $probed_all_hds->{hds}; - if (is_empty_array_ref($hds) && !$::move) { #- no way + if (is_empty_array_ref($hds)) { #- no way die N("An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"); } diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm index 5687ac4d3..f22283573 100644 --- a/perl-install/fs/mount.pm +++ b/perl-install/fs/mount.pm @@ -40,7 +40,7 @@ sub mount { push @types, 'smb', 'smbfs', 'davfs2' if !$::isInstall; - if (!member($fs, @types) && !$::move) { + if (!member($fs, @types)) { log::l("skipping mounting $dev partition ($fs)"); return; } |