14 lines
243 B
Go
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
|
|
}
|