summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-04-05 13:26:41 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-04-05 13:26:41 +0000
commitbc77438b671717a04a04eb7858fabeec2cfeae71 (patch)
treef7bfd3bc7a57c4cdb0c7d44f2ffadf1edcf55fc2 /perl-install/fs.pm
parentf4fa57a36d427624a520893209a9741e1d166a96 (diff)
downloaddrakx-backup-do-not-use-bc77438b671717a04a04eb7858fabeec2cfeae71.tar
drakx-backup-do-not-use-bc77438b671717a04a04eb7858fabeec2cfeae71.tar.gz
drakx-backup-do-not-use-bc77438b671717a04a04eb7858fabeec2cfeae71.tar.bz2
drakx-backup-do-not-use-bc77438b671717a04a04eb7858fabeec2cfeae71.tar.xz
drakx-backup-do-not-use-bc77438b671717a04a04eb7858fabeec2cfeae71.zip
allow mounting type devpts
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
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;