diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-15 18:15:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-15 18:15:28 +0000 |
commit | ab92499413c9776beae5eeead19b72902befb225 (patch) | |
tree | a6d68a362a72f5197b278f68a56a8ffebdabd7cf | |
parent | 728fe7b3972fd51a90bafec8576b6ac2ff2ed8c2 (diff) | |
download | drakx-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
-rw-r--r-- | perl-install/fs.pm | 2 |
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'); } |