diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-07-17 15:05:58 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-07-17 15:53:59 +0200 |
commit | afb0a1e932d2566e2118211168baa62d66385141 (patch) | |
tree | 6f7e8bf9a2d3bc058d9f0b2fc1e061489ecc47ec | |
parent | 09201eedc272993c221c35af8556035253083f5e (diff) | |
download | drakx-afb0a1e932d2566e2118211168baa62d66385141.tar drakx-afb0a1e932d2566e2118211168baa62d66385141.tar.gz drakx-afb0a1e932d2566e2118211168baa62d66385141.tar.bz2 drakx-afb0a1e932d2566e2118211168baa62d66385141.tar.xz drakx-afb0a1e932d2566e2118211168baa62d66385141.zip |
drakboot.conf is dead since before mga5
-rw-r--r-- | perl-install/bootloader.pm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 59172e161..d511bf6be 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -298,15 +298,12 @@ sub is_grub2_already_crypted { =item read_grub2 ($o_fstab) -Read back GRUB2 config + C</boot/grub2/drakboot.conf> +Read back GRUB2 config =cut sub read_grub2() { - my %bootloader = getVarsFromSh("$::prefix/boot/grub2/drakboot.conf"); - if (is_empty_hash_ref(\%bootloader)) { - %bootloader = read_grub2_install_sh(); - } + my %bootloader = read_grub2_install_sh(); return if is_empty_hash_ref(\%bootloader) & !-s "$::prefix/boot/grub2/grub.cfg"; my %h = getVarsFromSh("$::prefix/etc/default/grub"); $bootloader{timeout} = $h{GRUB_TIMEOUT}; @@ -2148,7 +2145,6 @@ sub install_raw_grub2() { log::explanations("grub2-install failed:\n(" . cat_($f) . ")\nError: <$error>"); die "grub2-install failed: $error"; } - unlink("$::prefix/boot/grub2/drakboot.conf"); } sub install_grub { |