diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-03-25 14:34:34 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-03-25 14:43:33 +0100 |
commit | 077646eb555255e406ff9b28ecb539e38b22255e (patch) | |
tree | a38b01c038499ab850002edbcc56e7c1a57e57d7 /perl-install/any.pm | |
parent | be0cb0252cc994805370ca833c0701a059f3212b (diff) | |
download | drakx-077646eb555255e406ff9b28ecb539e38b22255e.tar drakx-077646eb555255e406ff9b28ecb539e38b22255e.tar.gz drakx-077646eb555255e406ff9b28ecb539e38b22255e.tar.bz2 drakx-077646eb555255e406ff9b28ecb539e38b22255e.tar.xz drakx-077646eb555255e406ff9b28ecb539e38b22255e.zip |
do not try anymore to restore MBR with lilo
rationale: we don't install lilo anymore, we only support it when upgrading
see commit 9001e5c9e7e4235d81d73b92a48c57785374f97e
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 3c452942f..55ad37d3a 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -256,8 +256,6 @@ sub installBootloader { install_bootloader_pkgs($in->do_pkgs, $b); - eval { run_program::rooted($::prefix, 'echo | lilo -u') } if $::isInstall && !$::o->{isUpgrade} && -e "$::prefix/etc/lilo.conf" && glob("$::prefix/boot/boot.*"); - retry: eval { my $_w = $in->wait_message(N("Please wait"), N("Bootloader installation in progress")); |