diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-12-17 11:36:46 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-12-17 11:36:46 +0000 |
commit | b0ecc75d700b4a9500d1e13be125c9d48d42092e (patch) | |
tree | 4b9470ec0b317d26c1b61aae30cc7dfb75677258 /perl-install/fs.pm | |
parent | f26c4abbc6209dfffca97c959a4b7376a8b1e989 (diff) | |
download | drakx-b0ecc75d700b4a9500d1e13be125c9d48d42092e.tar drakx-b0ecc75d700b4a9500d1e13be125c9d48d42092e.tar.gz drakx-b0ecc75d700b4a9500d1e13be125c9d48d42092e.tar.bz2 drakx-b0ecc75d700b4a9500d1e13be125c9d48d42092e.tar.xz drakx-b0ecc75d700b4a9500d1e13be125c9d48d42092e.zip |
clean_tmp now means using tmpfs
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 4de3524c3..c0783d945 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -435,6 +435,7 @@ sub get_raw_hds { $all_hds->{nfss} = [ grep { isNfs($_) } @fstab ]; $all_hds->{smbs} = [ grep { isThisFs('smbfs', $_) } @fstab ]; $all_hds->{special} = [ + (grep { isThisFs('tmpfs', $_) } @fstab), { device => 'none', mntpoint => '/proc', type => 'proc' }, { device => 'none', mntpoint => '/dev/pts', type => 'devpts', options => 'mode=0620' }, ]; |