From ab92499413c9776beae5eeead19b72902befb225 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Sat, 15 Sep 2001 18:15:28 +0000 Subject: (write_fstab): fix supermount moving from options to fstype --- perl-install/fs.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 53123b1c4..ecba77b87 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -171,7 +171,7 @@ sub write_fstab { # handle bloody supermount special case if ($options =~ /supermount/) { - $options = join(",", "dev=$dev", "fs=$type", grep { $_ ne 'supermount' } split(':', $options)); + $options = join(",", "dev=$dev", "fs=$type", grep { $_ ne 'supermount' } split(',', $options)); ($dev, $type) = ($mntpoint, 'supermount'); } -- cgit v1.2.1