packer-cn/builder/virtualbox/common/hw_config.go

52 lines
1.3 KiB
Go
Raw Normal View History

//go:generate struct-markdown
package common
import (
"fmt"
"github.com/hashicorp/packer/template/interpolate"
)
type HWConfig struct {
// The number of cpus to use for building the VM.
2019-06-06 10:29:25 -04:00
// Defaults to 1.
CpuCount int `mapstructure:"cpus" required:"false"`
// The amount of memory to use for building the VM
2019-06-06 10:29:25 -04:00
// in megabytes. Defaults to 512 megabytes.
MemorySize int `mapstructure:"memory" required:"false"`
// Defaults to none. The type of audio device to use for
2019-06-06 10:29:25 -04:00
// sound when building the VM. Some of the options that are available are
// dsound, oss, alsa, pulse, coreaudio, null.
Sound string `mapstructure:"sound" required:"false"`
// Specifies whether or not to enable the USB bus when
2019-06-06 10:29:25 -04:00
// building the VM. Defaults to false.
USB bool `mapstructure:"usb" required:"false"`
}
func (c *HWConfig) Prepare(ctx *interpolate.Context) []error {
var errs []error
// Hardware and cpu options
if c.CpuCount < 0 {
errs = append(errs, fmt.Errorf("An invalid number of cpus was specified (cpus < 0): %d", c.CpuCount))
}
if c.CpuCount == 0 {
c.CpuCount = 1
}
if c.MemorySize < 0 {
errs = append(errs, fmt.Errorf("An invalid memory size was specified (memory < 0): %d", c.MemorySize))
}
if c.MemorySize == 0 {
c.MemorySize = 512
}
// devices
if c.Sound == "" {
c.Sound = "none"
}
return errs
}