mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-26 00:31:18 -04:00
13 lines
243 B
Go
13 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
|
|
}
|