2013-06-27 10:33:32 -04:00
|
|
|
package vagrant
|
|
|
|
|
|
|
|
import (
|
2013-06-27 19:05:47 -04:00
|
|
|
"errors"
|
2013-06-27 10:33:32 -04:00
|
|
|
"fmt"
|
2013-08-15 15:09:22 -04:00
|
|
|
"github.com/mitchellh/packer/common"
|
2013-06-27 10:33:32 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"io/ioutil"
|
2013-06-27 19:05:47 -04:00
|
|
|
"log"
|
2013-06-27 10:33:32 -04:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2013-06-27 19:05:47 -04:00
|
|
|
"regexp"
|
|
|
|
"strings"
|
2013-06-27 10:33:32 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type VBoxBoxConfig struct {
|
2013-08-15 15:09:22 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
2013-06-27 10:38:33 -04:00
|
|
|
OutputPath string `mapstructure:"output"`
|
|
|
|
VagrantfileTemplate string `mapstructure:"vagrantfile_template"`
|
2013-08-15 15:19:41 -04:00
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
tpl *packer.ConfigTemplate
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type VBoxVagrantfileTemplate struct {
|
|
|
|
BaseMacAddress string
|
|
|
|
}
|
|
|
|
|
|
|
|
type VBoxBoxPostProcessor struct {
|
|
|
|
config VBoxBoxConfig
|
|
|
|
}
|
|
|
|
|
2013-07-01 17:59:23 -04:00
|
|
|
func (p *VBoxBoxPostProcessor) Configure(raws ...interface{}) error {
|
2013-08-15 15:19:41 -04:00
|
|
|
md, err := common.DecodeConfig(&p.config, raws...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
p.config.tpl, err = packer.NewConfigTemplate()
|
2013-08-15 15:19:41 -04:00
|
|
|
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 10:33:32 -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 10:33:32 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-07-01 14:30:39 -04:00
|
|
|
func (p *VBoxBoxPostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, error) {
|
2013-06-27 19:05:47 -04:00
|
|
|
var err error
|
2013-06-27 10:33:32 -04:00
|
|
|
tplData := &VBoxVagrantfileTemplate{}
|
2013-06-27 19:05:47 -04:00
|
|
|
tplData.BaseMacAddress, err = p.findBaseMacAddress(artifact)
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 19:05:47 -04:00
|
|
|
}
|
2013-06-27 10:33:32 -04:00
|
|
|
|
2013-06-27 13:51:13 -04:00
|
|
|
// Compile the output path
|
2013-07-01 18:07:09 -04:00
|
|
|
outputPath, err := ProcessOutputPath(p.config.OutputPath,
|
|
|
|
p.config.PackerBuildName, "virtualbox", artifact)
|
2013-06-27 13:51:13 -04:00
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 13:51:13 -04:00
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -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 10:33:32 -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 10:33:32 -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 10:33:32 -04:00
|
|
|
}
|
|
|
|
defer vf.Close()
|
|
|
|
|
2013-06-27 10:38:33 -04:00
|
|
|
vagrantfileContents := defaultVBoxVagrantfile
|
|
|
|
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 10:38:33 -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 10:38:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
vagrantfileContents = string(contents)
|
|
|
|
}
|
|
|
|
|
2013-08-15 15:19:41 -04:00
|
|
|
vagrantfileContents, err = p.config.tpl.Process(vagrantfileContents, tplData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, fmt.Errorf("Error writing Vagrantfile: %s", err)
|
|
|
|
}
|
|
|
|
vf.Write([]byte(vagrantfileContents))
|
2013-06-27 10:33:32 -04:00
|
|
|
vf.Close()
|
|
|
|
|
|
|
|
// Create the metadata
|
|
|
|
metadata := map[string]string{"provider": "virtualbox"}
|
|
|
|
if err := WriteMetadata(dir, metadata); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
2013-06-29 15:46:05 -04:00
|
|
|
// Rename the OVF file to box.ovf, as required by Vagrant
|
|
|
|
ui.Message("Renaming the OVF to box.ovf...")
|
|
|
|
if err := p.renameOVF(dir); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-29 15:46:05 -04:00
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
// Compress the directory to the given output path
|
|
|
|
ui.Message(fmt.Sprintf("Compressing box..."))
|
2013-06-27 13:51:13 -04:00
|
|
|
if err := DirToBox(outputPath, dir); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
2013-07-01 14:30:39 -04:00
|
|
|
return NewArtifact("virtualbox", outputPath), false, nil
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
2013-06-27 19:05:47 -04:00
|
|
|
func (p *VBoxBoxPostProcessor) findBaseMacAddress(a packer.Artifact) (string, error) {
|
|
|
|
log.Println("Looking for OVF for base mac address...")
|
|
|
|
var ovf string
|
|
|
|
for _, f := range a.Files() {
|
|
|
|
if strings.HasSuffix(f, ".ovf") {
|
|
|
|
log.Printf("OVF found: %s", f)
|
|
|
|
ovf = f
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ovf == "" {
|
|
|
|
return "", errors.New("ovf file couldn't be found")
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := os.Open(ovf)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
data, err := ioutil.ReadAll(f)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
re := regexp.MustCompile(`<Adapter slot="0".+?MACAddress="(.+?)"`)
|
|
|
|
matches := re.FindSubmatch(data)
|
|
|
|
if matches == nil {
|
|
|
|
return "", errors.New("can't find base mac address in OVF")
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Base mac address: %s", string(matches[1]))
|
|
|
|
return string(matches[1]), nil
|
|
|
|
}
|
|
|
|
|
2013-06-29 15:46:05 -04:00
|
|
|
func (p *VBoxBoxPostProcessor) renameOVF(dir string) error {
|
|
|
|
log.Println("Looking for OVF to rename...")
|
|
|
|
matches, err := filepath.Glob(filepath.Join(dir, "*.ovf"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(matches) > 1 {
|
|
|
|
return errors.New("More than one OVF file in VirtualBox artifact.")
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Renaming: '%s' => box.ovf", matches[0])
|
|
|
|
return os.Rename(matches[0], filepath.Join(dir, "box.ovf"))
|
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
var defaultVBoxVagrantfile = `
|
|
|
|
Vagrant.configure("2") do |config|
|
2013-07-01 17:59:23 -04:00
|
|
|
config.vm.base_mac = "{{ .BaseMacAddress }}"
|
2013-06-27 10:33:32 -04:00
|
|
|
end
|
|
|
|
`
|