2013-12-22 12:24:29 -05:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
2013-12-22 12:24:29 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type VBoxManageConfig struct {
|
2019-05-28 11:50:58 -04:00
|
|
|
// Custom VBoxManage commands to
|
|
|
|
// execute in order to further customize the virtual machine being created. The
|
|
|
|
// value of this is an array of commands to execute. The commands are executed
|
|
|
|
// in the order defined in the template. For each command, the command is
|
|
|
|
// defined itself as an array of strings, where each string represents a single
|
|
|
|
// argument on the command-line to VBoxManage (but excluding
|
|
|
|
// VBoxManage itself). Each arg is treated as a configuration
|
|
|
|
// template, where the Name
|
|
|
|
// variable is replaced with the VM name. More details on how to use
|
|
|
|
// VBoxManage are below.
|
|
|
|
VBoxManage [][]string `mapstructure:"vboxmanage" required:"false"`
|
2013-12-22 12:24:29 -05:00
|
|
|
}
|
|
|
|
|
2015-05-27 17:01:08 -04:00
|
|
|
func (c *VBoxManageConfig) Prepare(ctx *interpolate.Context) []error {
|
2013-12-22 12:24:29 -05:00
|
|
|
if c.VBoxManage == nil {
|
|
|
|
c.VBoxManage = make([][]string, 0)
|
|
|
|
}
|
|
|
|
|
2016-02-02 15:41:43 -05:00
|
|
|
return nil
|
2013-12-22 12:24:29 -05:00
|
|
|
}
|