2013-06-27 19:21:03 -04:00
|
|
|
package vagrant
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2013-08-15 15:09:22 -04:00
|
|
|
"github.com/mitchellh/packer/common"
|
2013-06-27 19:21:03 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
|
|
|
type VMwareBoxConfig struct {
|
2013-08-15 15:09:22 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
2013-06-27 19:21:03 -04:00
|
|
|
OutputPath string `mapstructure:"output"`
|
|
|
|
VagrantfileTemplate string `mapstructure:"vagrantfile_template"`
|
2013-08-15 15:19:41 -04:00
|
|
|
|
|
|
|
tpl *common.Template
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type VMwareBoxPostProcessor struct {
|
|
|
|
config VMwareBoxConfig
|
|
|
|
}
|
|
|
|
|
2013-07-01 17:59:23 -04:00
|
|
|
func (p *VMwareBoxPostProcessor) Configure(raws ...interface{}) error {
|
2013-08-15 15:19:41 -04:00
|
|
|
md, err := common.DecodeConfig(&p.config, raws...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
p.config.tpl, err = common.NewTemplate()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.config.tpl.UserVars = p.config.PackerUserVars
|
|
|
|
|
|
|
|
// Accumulate any errors
|
|
|
|
errs := common.CheckUnusedConfig(md)
|
|
|
|
|
|
|
|
templates := map[string]*string{
|
|
|
|
"output": &p.config.OutputPath,
|
|
|
|
}
|
|
|
|
|
|
|
|
for n, ptr := range templates {
|
|
|
|
var err error
|
|
|
|
*ptr, err = p.config.tpl.Process(*ptr, nil)
|
2013-07-01 17:59:23 -04:00
|
|
|
if err != nil {
|
2013-08-15 15:19:41 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error processing %s: %s", n, err))
|
2013-07-01 17:59:23 -04:00
|
|
|
}
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
|
2013-08-15 15:19:41 -04:00
|
|
|
validates := map[string]*string{
|
|
|
|
"vagrantfile_template": &p.config.VagrantfileTemplate,
|
|
|
|
}
|
|
|
|
|
|
|
|
for n, ptr := range validates {
|
|
|
|
if err := p.config.tpl.Validate(*ptr); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error parsing %s: %s", n, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
|
2013-06-27 19:21:03 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-07-01 14:30:39 -04:00
|
|
|
func (p *VMwareBoxPostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, error) {
|
2013-06-27 19:21:03 -04:00
|
|
|
// Compile the output path
|
2013-07-01 18:07:09 -04:00
|
|
|
outputPath, err := ProcessOutputPath(p.config.OutputPath,
|
|
|
|
p.config.PackerBuildName, "vmware", artifact)
|
2013-06-27 19:21:03 -04:00
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create a temporary directory for us to build the contents of the box in
|
|
|
|
dir, err := ioutil.TempDir("", "packer")
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
// Copy all of the original contents into the temporary directory
|
|
|
|
for _, path := range artifact.Files() {
|
|
|
|
ui.Message(fmt.Sprintf("Copying: %s", path))
|
|
|
|
|
2013-07-07 20:44:13 -04:00
|
|
|
dstPath := filepath.Join(dir, filepath.Base(path))
|
|
|
|
if err := CopyContents(dstPath, path); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.config.VagrantfileTemplate != "" {
|
|
|
|
f, err := os.Open(p.config.VagrantfileTemplate)
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadAll(f)
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the Vagrantfile from the template
|
|
|
|
vf, err := os.Create(filepath.Join(dir, "Vagrantfile"))
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
defer vf.Close()
|
|
|
|
|
2013-08-15 15:19:41 -04:00
|
|
|
vagrantfileContents, err := p.config.tpl.Process(string(contents), nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, fmt.Errorf("Error writing Vagrantfile: %s", err)
|
|
|
|
}
|
|
|
|
vf.Write([]byte(vagrantfileContents))
|
2013-06-27 19:21:03 -04:00
|
|
|
vf.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the metadata
|
2013-06-29 16:52:18 -04:00
|
|
|
metadata := map[string]string{"provider": "vmware_desktop"}
|
2013-06-27 19:21:03 -04:00
|
|
|
if err := WriteMetadata(dir, metadata); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compress the directory to the given output path
|
|
|
|
ui.Message(fmt.Sprintf("Compressing box..."))
|
|
|
|
if err := DirToBox(outputPath, dir); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|
|
|
|
|
2013-07-01 14:30:39 -04:00
|
|
|
return NewArtifact("vmware", outputPath), false, nil
|
2013-06-27 19:21:03 -04:00
|
|
|
}
|