From d4da5171d9af2bc62eecc0014dc180d6677711ff Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Tue, 26 Sep 2000 18:00:25 +0000 Subject: *** empty log message *** --- perl-install/ChangeLog | 2 ++ perl-install/fs.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog index db5988a0e..d5f23a29c 100644 --- a/perl-install/ChangeLog +++ b/perl-install/ChangeLog @@ -1,5 +1,7 @@ 2000-09-26 François Pons + * fs.pm: added mounting of swap partition when mounting them + all (this can help :-) * pkgs.pm: fixed correction size code to make (really) a true bijection between corrected and rpm size. diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 638ffe5e7..d29d9d095 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -285,7 +285,7 @@ sub mount_all($;$$) { log::l("mounting all filesystems"); #- order mount by alphabetical ordre, that way / < /home < /home/httpd... - foreach (sort { $a->{mntpoint} cmp $b->{mntpoint} } grep { $_->{mntpoint} && isTrueFS($_) } @$fstab) { + foreach (sort { $a->{mntpoint} cmp $b->{mntpoint} } grep { isSwap($_) || $_->{mntpoint} && isTrueFS($_) } @$fstab) { mount_part($_, $prefix); } } -- cgit v1.2.1