You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/builder/vmware/common/vmx_config.go

16 lines
401 B

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
}