summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-09-15 18:15:28 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-09-15 18:15:28 +0000
commitab92499413c9776beae5eeead19b72902befb225 (patch)
treea6d68a362a72f5197b278f68a56a8ffebdabd7cf /perl-install/fs.pm
parent728fe7b3972fd51a90bafec8576b6ac2ff2ed8c2 (diff)
downloaddrakx-backup-do-not-use-ab92499413c9776beae5eeead19b72902befb225.tar
drakx-backup-do-not-use-ab92499413c9776beae5eeead19b72902befb225.tar.gz
drakx-backup-do-not-use-ab92499413c9776beae5eeead19b72902befb225.tar.bz2
drakx-backup-do-not-use-ab92499413c9776beae5eeead19b72902befb225.tar.xz
drakx-backup-do-not-use-ab92499413c9776beae5eeead19b72902befb225.zip
(write_fstab): fix supermount moving from options to fstype
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 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');
}