Changing machinetype default to PC instead of PC-1.0 which seems to be a saner default that works on more platforms. RedHat in particular doesnt have PC-1.0

This commit is contained in:
Kent Holloway 2014-10-03 10:37:03 -05:00
parent 2cf7e694bc
commit 2755ba1751
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
}
if b.config.MachineType == "" {
b.config.MachineType = "pc-1.0"
b.config.MachineType = "pc"
}
if b.config.OutputDir == "" {