summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2010-03-19 12:00:12 +0000
committerPascal Terjan <pterjan@mandriva.org>2010-03-19 12:00:12 +0000
commit0928e701a6daa765d7c2c4694f26d26a8f3828f1 (patch)
tree5e617b5cb31b9ce8ecde5848803c87e4f4541b13 /perl-install/install/steps_interactive.pm
parent69d777b83ca192d18336ca876fc243cde69d6bc9 (diff)
downloaddrakx-0928e701a6daa765d7c2c4694f26d26a8f3828f1.tar
drakx-0928e701a6daa765d7c2c4694f26d26a8f3828f1.tar.gz
drakx-0928e701a6daa765d7c2c4694f26d26a8f3828f1.tar.bz2
drakx-0928e701a6daa765d7c2c4694f26d26a8f3828f1.tar.xz
drakx-0928e701a6daa765d7c2c4694f26d26a8f3828f1.zip
do not apply bootloader settings before giving user the option to change them (#57471)
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r--perl-install/install/steps_interactive.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 04abbb542..44bec8571 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -847,7 +847,6 @@ sub summary {
},
clicked => sub {
any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) or return;
- any::installBootloader($o, $o->{bootloader}, $o->{all_hds});
},
} if !$::local_install;
@@ -1000,6 +999,7 @@ sub summary {
$o->summary_prompt(\@l, $check_complete);
+ any::installBootloader($o, $o->{bootloader}, $o->{all_hds}) if !$::local_install;
install::steps::configureTimezone($o) if !$timezone_manually_set; #- do not forget it.
}
@@ -1042,7 +1042,6 @@ sub setupBootloader {
}
{
any::setupBootloader_simple($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) or return;
- any::installBootloader($o, $o->{bootloader}, $o->{all_hds}) or die "already displayed";
}
}