packer-cn/builder/vmware/common/vmx_config.go

15 lines
304 B
Go
Raw Normal View History

2013-12-26 17:14:19 -05:00
package common
import (
2015-05-27 17:16:28 -04:00
"github.com/mitchellh/packer/template/interpolate"
2013-12-26 17:14:19 -05:00
)
type VMXConfig struct {
2014-05-10 13:19:35 -04:00
VMXData map[string]string `mapstructure:"vmx_data"`
VMXDataPost map[string]string `mapstructure:"vmx_data_post"`
2013-12-26 17:14:19 -05:00
}
func (c *VMXConfig) Prepare(ctx *interpolate.Context) []error {
return nil
2013-12-26 17:14:19 -05:00
}