diff options
author | Francois Pons <fpons@mandriva.com> | 1999-10-12 16:37:16 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 1999-10-12 16:37:16 +0000 |
commit | 580f495ce8cc4e4039c5aa4179564053b2d401c5 (patch) | |
tree | 5597ffe68b541c29cbaeb546206b9df2083d4878 /perl-install/install_steps.pm | |
parent | 11f99f43f9b01550fc98dd79283ededfe1de448e (diff) | |
download | drakx-backup-do-not-use-580f495ce8cc4e4039c5aa4179564053b2d401c5.tar drakx-backup-do-not-use-580f495ce8cc4e4039c5aa4179564053b2d401c5.tar.gz drakx-backup-do-not-use-580f495ce8cc4e4039c5aa4179564053b2d401c5.tar.bz2 drakx-backup-do-not-use-580f495ce8cc4e4039c5aa4179564053b2d401c5.tar.xz drakx-backup-do-not-use-580f495ce8cc4e4039c5aa4179564053b2d401c5.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 16835a196..8188fa87f 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -116,7 +116,9 @@ sub ask_mntpoint_s { (fsedit::get_root($fstab) || {})->{type} = 0x83; my %m; foreach (@$fstab) { - my $m = $_->{mntpoint} or next; + my $m = $_->{mntpoint}; + + next unless $m && $m ne 'swap'; #- there may be a lot of swap. $m{$m} and die _("Duplicate mount point %s", $m); $m{$m} = 1; |