summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/bootloader.pm2
-rw-r--r--perl-install/install/NEWS1
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 68ce10531..2b79ce7c1 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -2,6 +2,7 @@
o enable to (un)install os-prober (mga#16010, mga#18538)
o fix reading back last grub2 entry
o only overwrite GRUB_CMDLINE_LINUX_DEFAULT on first install (mga#18112)
+ o only overwrite install.sh when actually installing boot loader (mga#17455)
o set GRUB_DEFAULT + GRUB_SAVEDEFAULT (mga#9627, mga#16059)
o stop offering grub legacy & lilo on new installs (mga#18583)
- running commands as user:
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index b6f9fcff1..a70c51f9a 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -1835,7 +1835,6 @@ sub write_grub2 {
log::l("error while running grub2-set-default: $err");
}
check_enough_space();
- write_grub2_install_sh($bootloader, $o_backup_extension);
}
sub get_grub2_install_sh() {
@@ -2049,6 +2048,7 @@ sub restore_previous_MBR_bootloader {
sub install_grub2 {
my ($bootloader, $all_hds) = @_;
write_grub2($bootloader, $all_hds);
+ write_grub2_install_sh($bootloader, $o_backup_extension);
install_raw_grub2();
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index c29edee58..457ceb6e9 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -2,6 +2,7 @@
o enable to (un)install os-prober (mga#16010, mga#18538)
o fix reading back last grub2 entry
o only overwrite GRUB_CMDLINE_LINUX_DEFAULT on first install (mga#18112)
+ o only overwrite install.sh when actually installing boot loader (mga#17455)
o set GRUB_DEFAULT + GRUB_SAVEDEFAULT (mga#9627, mga#16059)
o stop offering grub legacy & lilo on new installs (mga#18583)