packer-cn/builder/virtualbox/common/vboxbundle_config.go
Andrew Pennebaker 2c989157e4 gofmt
2018-11-27 09:31:01 -08:00

14 lines
243 B
Go

package common
import (
"github.com/hashicorp/packer/template/interpolate"
)
type VBoxBundleConfig struct {
BundleISO bool `mapstructure:"bundle_iso"`
}
func (c *VBoxBundleConfig) Prepare(ctx *interpolate.Context) []error {
return nil
}