From f8fd031d3e70a7f4c25f0be93e472cecc0dee00e Mon Sep 17 00:00:00 2001 From: Thomas Backlund Date: Fri, 9 Jan 2015 01:13:13 +0159 Subject: bootloader: enable isInstall during live mode so we install to chroot and not on live image --- perl-install/bootloader.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 0924d7bac..433e580aa 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -2061,6 +2061,8 @@ sub ensure_pkg_is_installed { my %h = ('grub2' => 'grub2-install'); my $main_method = main_method($bootloader->{method}); if (member($main_method, qw(grub grub2 lilo))) { + # install of bootloader must be done in chroot, not on live image + local $::isInstall = 1 if is_mgalive(); $do_pkgs->ensure_binary_is_installed($pkg{$main_method} || $main_method, $h{$main_method} || $main_method, 1) or return 0; if ($bootloader->{method} eq 'grub-graphic') { $do_pkgs->ensure_is_installed('mageia-gfxboot-theme', '/usr/share/gfxboot/themes/Mageia/boot/message', 1) or return 0; -- cgit v1.2.1