diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-08-21 16:43:46 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-08-21 16:43:46 +0200 |
commit | 6b4eb8a46f56195daaefe12f6b623019db0fb782 (patch) | |
tree | 073824cbdacd912ed11053ad94fad451b084373f /perl-install/bootloader.pm | |
parent | 593f1350594ddf3ca0efe65b7af333a0fc293c64 (diff) | |
download | drakx-6b4eb8a46f56195daaefe12f6b623019db0fb782.tar drakx-6b4eb8a46f56195daaefe12f6b623019db0fb782.tar.gz drakx-6b4eb8a46f56195daaefe12f6b623019db0fb782.tar.bz2 drakx-6b4eb8a46f56195daaefe12f6b623019db0fb782.tar.xz drakx-6b4eb8a46f56195daaefe12f6b623019db0fb782.zip |
Keep timeout value when it's 0 (mga#27158)
Rationale:
setVarsInSh() excludes lines where value is 0, undefined or empty string
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 3 |
1 files changed, 2 insertions, 1 deletions
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); } |