mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-12-01 00:48:18 +00:00
Fix a syntax error in the ostree BLS fix attempt
This commit is contained in:
parent
5d7c163550
commit
f29388d27a
2 changed files with 5 additions and 2 deletions
|
@ -420,7 +420,7 @@ index 9fcd77cacc3..81f35a2f3f0 100644
|
||||||
get_sorted_bls()
|
get_sorted_bls()
|
||||||
{
|
{
|
||||||
- if ! [ -d "${blsdir}" ]; then
|
- if ! [ -d "${blsdir}" ]; then
|
||||||
+ if ! [ -d "${blsdir}" ] || [ -f /run/ostree-booted ] || [ -d /ostree/repo ]]; then
|
+ if ! [ -d "${blsdir}" ] || [ -f /run/ostree-booted ] || [ -d /ostree/repo ]; then
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
Name: grub2
|
Name: grub2
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 2.06
|
Version: 2.06
|
||||||
Release: 28%{?dist}
|
Release: 29%{?dist}
|
||||||
Summary: Bootloader with support for Linux, Multiboot and more
|
Summary: Bootloader with support for Linux, Multiboot and more
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: http://www.gnu.org/software/grub/
|
URL: http://www.gnu.org/software/grub/
|
||||||
|
@ -526,6 +526,9 @@ mv ${EFI_HOME}/grub.cfg.stb ${EFI_HOME}/grub.cfg
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 23 2022 Adam Williamson <awilliam@redhat.com> - 2.06-29
|
||||||
|
- Fix a syntax error in the ostree BLS fix attempt
|
||||||
|
|
||||||
* Wed Mar 23 2022 Peter Robinson <pbrobinson@fedoraproject.org> 2.06-28
|
* Wed Mar 23 2022 Peter Robinson <pbrobinson@fedoraproject.org> 2.06-28
|
||||||
- Rebuild for secure-boot signing
|
- Rebuild for secure-boot signing
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue