Skip to content

Commit 74e36ff

Browse files
committed
Revert "Bugfix Kernel modules aren't loaded because incorrect function call"
This reverts commit 2644caf.
1 parent be031f7 commit 74e36ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

installer/cloud.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func Cloud(c *types.Config, update bool) error {
5555

5656
if utils.GetLock(202402081552, stack.LocksDir) {
5757
fmt.Println("Preparing kernel to run UTMStack")
58-
if err := PrepareKernel(); err != nil {
58+
if err := PrepareSystem(); err != nil {
5959
return err
6060
}
6161

installer/master.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func Master(c *types.Config) error {
5555

5656
if utils.GetLock(202402081552, stack.LocksDir) {
5757
fmt.Println("Preparing kernel to run UTMStack")
58-
if err := PrepareKernel(); err != nil {
58+
if err := PrepareSystem(); err != nil {
5959
return err
6060
}
6161

0 commit comments

Comments
 (0)