diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-06-29 10:54:07 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-06-29 10:54:07 +0000 |
commit | 477a8cc709be345504c6cbbf1b57103978484e33 (patch) | |
tree | 528947268e4f6874bf954648e9df2bd83fa19e0b /perl-install | |
parent | 7fc03519620b88cc83a498a9e238d25a890d6122 (diff) | |
download | drakx-477a8cc709be345504c6cbbf1b57103978484e33.tar drakx-477a8cc709be345504c6cbbf1b57103978484e33.tar.gz drakx-477a8cc709be345504c6cbbf1b57103978484e33.tar.bz2 drakx-477a8cc709be345504c6cbbf1b57103978484e33.tar.xz drakx-477a8cc709be345504c6cbbf1b57103978484e33.zip |
do not add default device in device hash, it will be filled with result from fs::subpart_from_wild_device_name
Diffstat (limited to 'perl-install')
-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 dda2716f5..6093b005e 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -70,7 +70,7 @@ sub read_fstab { $dev =~ s/\\040/ /g; my $h = { - device => $dev, mntpoint => $mntpoint, type => $type, + mntpoint => $mntpoint, type => $type, options => $options, comment => $comment, if_(member('keep_freq_passno', @reading_options), freq => $freq, passno => $passno), }; |