Skip to content

Commit

Permalink
fix: merge kernel parameters into global config
Browse files Browse the repository at this point in the history
Signed-off-by: Kiefer Chang <kiefer.chang@suse.com>
  • Loading branch information
bk201 committed Feb 2, 2024
1 parent 5e98567 commit 8593ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/console/install_panels.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ func (c *Console) layoutInstall(g *gocui.Gui) error {
}

if cfg, err := config.ReadConfig(); err == nil {
c.config.Merge(cfg)
if cfg.Install.Automatic && isFirstConsoleTTY() {
logrus.Info("Start automatic installation...")
c.config.Merge(cfg)
// setup InstallMode to ensure that during automatic install
// we are only copying binaries and ignoring network / rancherd setup
// needed for generating pre-installed qcow2 image
Expand Down

0 comments on commit 8593ff8

Please sign in to comment.