Skip to content

Commit

Permalink
fix: write install phase file before wait for system init
Browse files Browse the repository at this point in the history
  • Loading branch information
dkeven committed Jan 21, 2025
1 parent 8c922e6 commit 7611a61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/phase/cluster/linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ func (l *linuxInstallPhaseBuilder) build() []module.Module {
addModule(backupModuleBuilder(func() []module.Module {
return l.installBackup()
}).withBackup(l.runtime)...).
addModule(&terminus.WelcomeModule{}).
addModule(&terminus.InstalledModule{})
addModule(&terminus.InstalledModule{}).
addModule(&terminus.WelcomeModule{})
}
4 changes: 2 additions & 2 deletions pkg/phase/cluster/macos.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ func (m *macosInstallPhaseBuilder) build() []module.Module {
return m.base().
addModule(m.installCluster()...).
addModule(m.installTerminus()...).
addModule(&terminus.WelcomeModule{}).
addModule(&terminus.InstalledModule{})
addModule(&terminus.InstalledModule{}).
addModule(&terminus.WelcomeModule{})
}

0 comments on commit 7611a61

Please sign in to comment.