summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-09-17 12:18:36 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-09-17 12:18:36 +0000
commit3d2831db011d11dcc5c44fda3c303e4303910351 (patch)
tree29b7ed35bab3a88c0459e806dca01385d71529d0 /perl-install/fs.pm
parent30d218d9cc0d5b10668f6388a0df560dbbcda656 (diff)
downloaddrakx-backup-do-not-use-3d2831db011d11dcc5c44fda3c303e4303910351.tar
drakx-backup-do-not-use-3d2831db011d11dcc5c44fda3c303e4303910351.tar.gz
drakx-backup-do-not-use-3d2831db011d11dcc5c44fda3c303e4303910351.tar.bz2
drakx-backup-do-not-use-3d2831db011d11dcc5c44fda3c303e4303910351.tar.xz
drakx-backup-do-not-use-3d2831db011d11dcc5c44fda3c303e4303910351.zip
(set_default_options): disable iocharset= and codepage= for supermount
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index e047c1611..03397d80f 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -362,6 +362,12 @@ sub set_default_options {
$options->{user} = 0;
}
+ if ($options->{supermount}) {
+ #- drives supermount crazy :'-(
+ delete $options->{'codepage='};
+ delete $options->{'iocharset='};
+ }
+
# have noauto when we have user
$options->{noauto} = 1 if $options->{user};