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"`
|
2014-05-09 12:25:15 -04:00
|
|
|
VMXDataPost map[string]string `mapstructure:"vmx_data_post"`
|
2013-12-26 17:14:19 -05:00
|
|
|
}
|
|
|
|
|
2016-02-02 15:41:42 -05:00
|
|
|
func (c *VMXConfig) Prepare(ctx *interpolate.Context) []error {
|
2016-02-02 15:41:43 -05:00
|
|
|
return nil
|
2013-12-26 17:14:19 -05:00
|
|
|
}
|