From 234189fa092bad5b62ba2bba6d67be152720657d Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 14 Mar 2014 08:36:41 +0100 Subject: drop disabling supermount supermount is dead since 2007 (commit 29b91486ff7de14e6f4388ee03bf426a912f76d9) --- perl-install/fs.pm | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'perl-install/fs.pm') 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') { -- cgit v1.2.1