diff options
author | Francois Pons <fpons@mandriva.com> | 2000-10-03 15:13:44 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-10-03 15:13:44 +0000 |
commit | a3912a424feb65f9379fa85e387a8dc6a0467bee (patch) | |
tree | 2919ec04d704dc4bce29097458e0d04cafaa4631 /perl-install/fs.pm | |
parent | 194f2245a3621c84d46ffedc146b1e51c8d8191c (diff) | |
download | drakx-a3912a424feb65f9379fa85e387a8dc6a0467bee.tar drakx-a3912a424feb65f9379fa85e387a8dc6a0467bee.tar.gz drakx-a3912a424feb65f9379fa85e387a8dc6a0467bee.tar.bz2 drakx-a3912a424feb65f9379fa85e387a8dc6a0467bee.tar.xz drakx-a3912a424feb65f9379fa85e387a8dc6a0467bee.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index d29d9d095..83f4676d5 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -54,7 +54,7 @@ sub check_mounted($) { open H, "/proc/swaps"; foreach (<F>, <G>, <H>) { foreach my $p (@$fstab) { - /$p->{device}\s+([^\s]*)\s+/ and $p->{mntpoint} = $1, $p->{isMounted} = $p->{isFormatted} = 1, print STDERR "ok for $p->{mntpoint} with mounted=$p->{isMounted}\n"; + /$p->{device}\s+([^\s]*)\s+/ and $p->{mntpoint} = $1, $p->{isMounted} = $p->{isFormatted} = 1; } } } |