Skip to content

Commit

Permalink
Fix partition table type
Browse files Browse the repository at this point in the history
  • Loading branch information
jaevans authored and Vicente-Cheng committed Sep 14, 2023
1 parent 947bf7e commit 5c375c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/cos.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func ConvertToElementalConfig(config *HarvesterConfig) (*ElementalConfig, error)

elementalConfig.Install.PartTable = "gpt"
if !config.Install.ForceGPT {
elementalConfig.Install.PartTable = "mbr"
elementalConfig.Install.PartTable = "msdos"
}

resolvedDevPath, err := filepath.EvalSymlinks(config.Install.Device)
Expand Down

0 comments on commit 5c375c0

Please sign in to comment.