github.com/mitchellh/packer@v1.3.2/builder/vmware/common/vmx_config.go (about)

     1  package common
     2  
     3  import (
     4  	"github.com/hashicorp/packer/template/interpolate"
     5  )
     6  
     7  type VMXConfig struct {
     8  	VMXData           map[string]string `mapstructure:"vmx_data"`
     9  	VMXDataPost       map[string]string `mapstructure:"vmx_data_post"`
    10  	VMXRemoveEthernet bool              `mapstructure:"vmx_remove_ethernet_interfaces"`
    11  }
    12  
    13  func (c *VMXConfig) Prepare(ctx *interpolate.Context) []error {
    14  	return nil
    15  }