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