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

14 lines
243 B
Go
Raw Normal View History

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