diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-17 12:18:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-17 12:18:36 +0000 |
commit | 3d2831db011d11dcc5c44fda3c303e4303910351 (patch) | |
tree | 29b7ed35bab3a88c0459e806dca01385d71529d0 | |
parent | 30d218d9cc0d5b10668f6388a0df560dbbcda656 (diff) | |
download | drakx-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
-rw-r--r-- | perl-install/fs.pm | 6 |
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}; |