16 lines
401 B
Go
16 lines
401 B
Go
package common
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/template/interpolate"
|
|
)
|
|
|
|
type VMXConfig struct {
|
|
VMXData map[string]string `mapstructure:"vmx_data"`
|
|
VMXDataPost map[string]string `mapstructure:"vmx_data_post"`
|
|
VMXRemoveEthernet bool `mapstructure:"vmx_remove_ethernet_interfaces"`
|
|
}
|
|
|
|
func (c *VMXConfig) Prepare(ctx *interpolate.Context) []error {
|
|
return nil
|
|
}
|