diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-24 01:41:44 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-24 02:11:10 +0200 |
commit | 7df58eb142e5cc5121a7ec6639b4f4af25329511 (patch) | |
tree | 4e060ec7065fad220790538ed167340aa82b17cf /perl-install | |
parent | 5299be0d043982d2e8180d7b56c26331ae57b8e9 (diff) | |
download | drakx-7df58eb142e5cc5121a7ec6639b4f4af25329511.tar drakx-7df58eb142e5cc5121a7ec6639b4f4af25329511.tar.gz drakx-7df58eb142e5cc5121a7ec6639b4f4af25329511.tar.bz2 drakx-7df58eb142e5cc5121a7ec6639b4f4af25329511.tar.xz drakx-7df58eb142e5cc5121a7ec6639b4f4af25329511.zip |
remeber if we didn't want to overwrite ESP/MBR
it wasn't done previously...
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/bootloader.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index d6961f429..4cb72fb0c 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -359,6 +359,7 @@ sub read_grub2_install_sh() { if ($s =~ m!(/dev/\S+)!m) { $h{boot} = $1; } + $h{no_esp_or_mbr} = $s =~ m!--grub-setup=/bin/true!; %h; } |