diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-04-05 13:26:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-04-05 13:26:41 +0000 |
commit | bc77438b671717a04a04eb7858fabeec2cfeae71 (patch) | |
tree | f7bfd3bc7a57c4cdb0c7d44f2ffadf1edcf55fc2 /perl-install/fs.pm | |
parent | f4fa57a36d427624a520893209a9741e1d166a96 (diff) | |
download | drakx-bc77438b671717a04a04eb7858fabeec2cfeae71.tar drakx-bc77438b671717a04a04eb7858fabeec2cfeae71.tar.gz drakx-bc77438b671717a04a04eb7858fabeec2cfeae71.tar.bz2 drakx-bc77438b671717a04a04eb7858fabeec2cfeae71.tar.xz drakx-bc77438b671717a04a04eb7858fabeec2cfeae71.zip |
allow mounting type devpts
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 030c6c1f3..3adce3cea 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -719,7 +719,7 @@ sub mount { $o_wait_message->(N("Mounting partition %s", $dev)) if $o_wait_message; system('mount', '-t', $fs, $dev, $where, if_($o_options, '-o', $o_options)) == 0 or die N("mounting partition %s in directory %s failed", $dev, $where); } else { - my @types = ('ext2', 'proc', 'sysfs', 'usbdevfs', 'iso9660', 'devfs', @fs_modules); + my @types = ('ext2', 'proc', 'sysfs', 'usbdevfs', 'iso9660', 'devfs', 'devpts', @fs_modules); member($fs, @types) or log::l("skipping mounting $dev partition ($fs)"), return; |