diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-22 00:34:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-22 00:34:45 +0000 |
commit | f304a8d120c90ca888e1046c6d3335fac7222dfe (patch) | |
tree | 62233c9818d77b56c63a90fbab56fcd99e7fe96e | |
parent | e41098142fd5590bdf1bea580f5a4425e8f1ddd5 (diff) | |
download | drakx-f304a8d120c90ca888e1046c6d3335fac7222dfe.tar drakx-f304a8d120c90ca888e1046c6d3335fac7222dfe.tar.gz drakx-f304a8d120c90ca888e1046c6d3335fac7222dfe.tar.bz2 drakx-f304a8d120c90ca888e1046c6d3335fac7222dfe.tar.xz drakx-f304a8d120c90ca888e1046c6d3335fac7222dfe.zip |
don't add /dev/pts line in fstab anymore (it's done in initrd and udev)
-rw-r--r-- | perl-install/fs.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 95f38f737..8c790cdec 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -375,7 +375,6 @@ sub get_raw_hds { $all_hds->{special} = [ (grep { $_->{fs_type} eq 'tmpfs' } @fstab), { device => 'none', mntpoint => '/proc', fs_type => 'proc' }, - { device => 'none', mntpoint => '/dev/pts', fs_type => 'devpts', options => 'mode=0620' }, ]; } |