From 6b4eb8a46f56195daaefe12f6b623019db0fb782 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 21 Aug 2020 16:43:46 +0200 Subject: Keep timeout value when it's 0 (mga#27158) Rationale: setVarsInSh() excludes lines where value is 0, undefined or empty string --- perl-install/NEWS | 3 +++ perl-install/bootloader.pm | 3 ++- perl-install/install/NEWS | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 2e56b5bc8..57e0cf32d 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- drakboot: + o keep timeout value when it's 0 (mga#27158) + Version 18.33 - 19 August 2020 - fix failure to update grub2 config when service_harddrake attempts to diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 8cd392b0e..c09b12330 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -2071,7 +2071,8 @@ sub write_grub2_sysconfig { $conf{GRUB_DISABLE_RECOVERY} = 'false'; # for 'failsafe' entry $conf{GRUB_DEFAULT} //= 'saved'; # for default entry but do not overwrite user choice $conf{GRUB_SAVEDEFAULT} //= 'true'; # for default entry but do not overwrite user choice - $conf{GRUB_TIMEOUT} = $bootloader->{timeout}; + # special case so that setVarsInSh() doesn't emit the line when timeout is 0 + $conf{GRUB_TIMEOUT} = $bootloader->{timeout} eq 0 ? "0 " : $bootloader->{timeout}; renamef($f, $f . ($o_backup_extension || '.old')); setVarsInSh($f, \%conf); } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 0f61e945d..1524bf806 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- bootloader: + o keep timeout value when it's 0 (mga#27158) + Version 18.33 - 19 August 2020 - recognize new kernel 5.5 - 5.8 drivers -- cgit v1.2.1