mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-24 14:32:58 +00:00
Only execute grub2-switch-to-blscfg if GRUB_ENABLE_BLSCFG isn't set
There's no point on executing the script if GRUB_ENABLE_BLSCFG has already been set. Currently was checking if an user explicitly set it to false to avoid enabling the BLS configuration, but it should also be avoided if was already set to true by a previous package update or during installation. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
This commit is contained in:
parent
d8cdcb3a21
commit
298aa12e25
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ fi
|
||||||
%posttrans tools
|
%posttrans tools
|
||||||
|
|
||||||
if [ -f /etc/default/grub ]; then
|
if [ -f /etc/default/grub ]; then
|
||||||
! grep -q '^GRUB_ENABLE_BLSCFG=false' /etc/default/grub && \
|
! grep -q '^GRUB_ENABLE_BLSCFG=.*' /etc/default/grub && \
|
||||||
/sbin/grub2-switch-to-blscfg --backup-suffix=.rpmsave &>/dev/null || :
|
/sbin/grub2-switch-to-blscfg --backup-suffix=.rpmsave &>/dev/null || :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue