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"
|
|
|
|
"github.com/mitchellh/mapstructure"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"io"
|
|
|
|
"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
|
|
|
"text/template"
|
|
|
|
)
|
|
|
|
|
|
|
|
type VBoxBoxConfig struct {
|
2013-06-27 10:38:33 -04:00
|
|
|
OutputPath string `mapstructure:"output"`
|
|
|
|
VagrantfileTemplate string `mapstructure:"vagrantfile_template"`
|
2013-07-01 18:07:09 -04:00
|
|
|
|
|
|
|
PackerBuildName string `mapstructure:"packer_build_name"`
|
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 {
|
|
|
|
for _, raw := range raws {
|
|
|
|
err := mapstructure.Decode(raw, &p.config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
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))
|
|
|
|
src, err := os.Open(path)
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
defer src.Close()
|
|
|
|
|
|
|
|
dst, err := os.Create(filepath.Join(dir, filepath.Base(path)))
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
defer dst.Close()
|
|
|
|
|
|
|
|
if _, err := io.Copy(dst, src); 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)
|
|
|
|
}
|
|
|
|
|
|
|
|
t := template.Must(template.New("vagrantfile").Parse(vagrantfileContents))
|
2013-06-27 10:33:32 -04:00
|
|
|
t.Execute(vf, tplData)
|
|
|
|
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
|
|
|
|
`
|