summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-03-14 08:36:41 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-03-14 08:37:36 +0100
commit234189fa092bad5b62ba2bba6d67be152720657d (patch)
treefe756b35064aba808e000115365ea2b6165e7d78 /perl-install/fs.pm
parent3546b50afc6f78bda9384ed858ef7ea503ddafd0 (diff)
downloaddrakx-234189fa092bad5b62ba2bba6d67be152720657d.tar
drakx-234189fa092bad5b62ba2bba6d67be152720657d.tar.gz
drakx-234189fa092bad5b62ba2bba6d67be152720657d.tar.bz2
drakx-234189fa092bad5b62ba2bba6d67be152720657d.tar.xz
drakx-234189fa092bad5b62ba2bba6d67be152720657d.zip
drop disabling supermount
supermount is dead since 2007 (commit 29b91486ff7de14e6f4388ee03bf426a912f76d9)
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm21
1 files changed, 0 insertions, 21 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index d4f742da6..f8b02c9c7 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -49,27 +49,6 @@ sub read_fstab {
$options = 'defaults' if $options eq 'rw'; # clean-up for mtab read
- if ($fs_type eq 'supermount') {
- log::l("dropping supermount");
- $options = join(",", grep {
- if (/fs=(.*)/) {
- $fs_type = $1;
-
- #- with supermount, the type could be something like ext2:vfat
- #- but this cannot be done without supermount, so switching to "auto"
- $fs_type = 'auto' if $fs_type =~ /:/;
-
- 0;
- } elsif (/dev=(.*)/) {
- $dev = $1;
- 0;
- } elsif ($_ eq '--') {
- 0;
- } else {
- 1;
- }
- } split(',', $options));
- }
s/\\040/ /g foreach $mntpoint, $dev, $options;
if ($fs_type eq 'ext4') {