diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-10 02:20:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-10 02:20:32 +0000 |
commit | bff2e783f7d82e9450d38f931820f95f98012e58 (patch) | |
tree | 165e01d00ab7fb7c930c844e54fa15f805938ebf /perl-install/install2.pm | |
parent | bc05f062a49c21078346c2223d0807afc9ce20bd (diff) | |
download | drakx-backup-do-not-use-bff2e783f7d82e9450d38f931820f95f98012e58.tar drakx-backup-do-not-use-bff2e783f7d82e9450d38f931820f95f98012e58.tar.gz drakx-backup-do-not-use-bff2e783f7d82e9450d38f931820f95f98012e58.tar.bz2 drakx-backup-do-not-use-bff2e783f7d82e9450d38f931820f95f98012e58.tar.xz drakx-backup-do-not-use-bff2e783f7d82e9450d38f931820f95f98012e58.zip |
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 71def4178..574b59744 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -289,7 +289,7 @@ sub partitionDisks { my $ok = fsedit::get_root($o->{fstab} || []) ? 1 : install_any::getHds($o); my $auto = $ok && !$o->{partitioning}{readonly} && - ($o->{partitioning}{auto_allocate} || $::beginner && fsedit::get_fstab(@{$o->{hds}}) < 4); + ($o->{partitioning}{auto_allocate} || $::beginner && fsedit::get_fstab(@{$o->{hds}}) < 3); eval { fsedit::auto_allocate($o->{hds}, $o->{partitions}) } if $auto; @@ -355,7 +355,6 @@ sub miscellaneous { $o->miscellaneous($_[0]); addToBeDone { install_any::fsck_option(); -#-GOLD run_program::rooted($o->{prefix}, "chkconfig --del kudzu") unless $o->{miscellaneous}{kudzu}; } 'doInstallStep'; } @@ -479,7 +478,7 @@ sub main { # kickstart => sub { $::auto_install = 1; $cfg = $v; }, auto_install => sub { $::auto_install = 1; $cfg = $v; }, simple_themes => sub { $o->{simple_themes} = 1 }, - alawindows => sub { $o->{security} = $o->{partitioning}{clearall} = 1; $o->{bootloader}{crushMbr} = 1 }, + alawindows => sub { $o->{security} = 0; $o->{partitioning}{clearall} = 1; $o->{bootloader}{crushMbr} = 1 }, g_auto_install => sub { $::testing = $::g_auto_install = 1; $o->{partitioning}{auto_allocate} = 1 }, }}{lc $n}; &$f if $f; } %cmdline; @@ -534,6 +533,7 @@ sub main { add2hash(network::findIntf($o->{intf} ||= [], $l->{DEVICE}), $l); } + eval { run_program::run("rmmod", "vfat") }; modules::load_deps("/modules/modules.dep"); modules::read_stage1_conf("/tmp/conf.modules"); modules::read_already_loaded(); |