From ec8a8bb22acc1724088fcf397a91ee199ce0a215 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Sun, 22 May 2022 17:23:27 +0200 Subject: [PATCH] distro/rhel90: properly set grub2 config from ImageConfig We need to actually set the grub2 configuration if there is one. Doh. --- internal/distro/rhel90/pipelines.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/distro/rhel90/pipelines.go b/internal/distro/rhel90/pipelines.go index 6a8bafc58..5d5346dd4 100644 --- a/internal/distro/rhel90/pipelines.go +++ b/internal/distro/rhel90/pipelines.go @@ -618,6 +618,8 @@ func osPipeline(t *imageType, if grub2.Config != nil { cfg.Default = grub2.Config.Default } + + grub2.Config = cfg } }