diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-19 21:32:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-19 21:32:18 +0000 |
commit | 777c8aa163bf6a9f7c303470ee8ca1d650704d46 (patch) | |
tree | f2a716415d8a13cd67ee94aebfd7d46e6a7f92a9 /perl-install/install_steps.pm | |
parent | 9c9eb438a104ec8be8d67107e53e0c799a48c3cb (diff) | |
download | drakx-777c8aa163bf6a9f7c303470ee8ca1d650704d46.tar drakx-777c8aa163bf6a9f7c303470ee8ca1d650704d46.tar.gz drakx-777c8aa163bf6a9f7c303470ee8ca1d650704d46.tar.bz2 drakx-777c8aa163bf6a9f7c303470ee8ca1d650704d46.tar.xz drakx-777c8aa163bf6a9f7c303470ee8ca1d650704d46.zip |
disable supermount for the moment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 63d6a60a8..c1479393f 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -866,7 +866,7 @@ sub miscellaneousBefore { $o->{security} ||= $s{SECURITY} if exists $s{SECURITY}; $ENV{SECURE_LEVEL} = $o->{security}; - add2hash_ $o, { useSupermount => $o->{security} < 4 && arch() !~ /sparc/ && !$::corporate }; + add2hash_ $o, { useSupermount => 0 && $o->{security} < 4 && arch() !~ /sparc/ && !$::corporate }; add2hash_($o->{miscellaneous} ||= {}, { numlock => !$o->{pcmcia} }); } |