2013-06-04 18:00:58 -04:00
|
|
|
package vmware
|
|
|
|
|
|
|
|
import (
|
2013-06-06 17:46:48 -04:00
|
|
|
"errors"
|
2013-06-06 17:38:14 -04:00
|
|
|
"fmt"
|
2013-06-04 20:00:29 -04:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2013-06-04 18:00:58 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-06-05 20:52:37 -04:00
|
|
|
"log"
|
2013-06-07 19:23:24 -04:00
|
|
|
"math/rand"
|
2013-06-06 18:12:54 -04:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2013-06-06 12:10:14 -04:00
|
|
|
"time"
|
2013-06-04 18:00:58 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const BuilderId = "mitchellh.vmware"
|
|
|
|
|
|
|
|
type Builder struct {
|
|
|
|
config config
|
2013-06-06 15:19:38 -04:00
|
|
|
driver Driver
|
2013-06-04 18:00:58 -04:00
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
type config struct {
|
2013-06-07 19:20:58 -04:00
|
|
|
DiskName string `mapstructure:"vmdk_name"`
|
|
|
|
ISOUrl string `mapstructure:"iso_url"`
|
|
|
|
VMName string `mapstructure:"vm_name"`
|
|
|
|
OutputDir string `mapstructure:"output_directory"`
|
|
|
|
HTTPDir string `mapstructure:"http_directory"`
|
|
|
|
HTTPPortMin uint `mapstructure:"http_port_min"`
|
|
|
|
HTTPPortMax uint `mapstructure:"http_port_max"`
|
|
|
|
BootCommand []string `mapstructure:"boot_command"`
|
|
|
|
BootWait time.Duration ``
|
|
|
|
ShutdownCommand string `mapstructure:"shutdown_command"`
|
|
|
|
ShutdownTimeout time.Duration ``
|
|
|
|
SSHUser string `mapstructure:"ssh_username"`
|
|
|
|
SSHPassword string `mapstructure:"ssh_password"`
|
|
|
|
SSHWaitTimeout time.Duration ``
|
|
|
|
VMXData map[string]string `mapstructure:"vmx_data"`
|
|
|
|
VNCPortMin uint `mapstructure:"vnc_port_min"`
|
|
|
|
VNCPortMax uint `mapstructure:"vnc_port_max"`
|
2013-06-06 12:10:14 -04:00
|
|
|
|
2013-06-06 19:30:37 -04:00
|
|
|
RawBootWait string `mapstructure:"boot_wait"`
|
|
|
|
RawShutdownTimeout string `mapstructure:"shutdown_timeout"`
|
|
|
|
RawSSHWaitTimeout string `mapstructure:"ssh_wait_timeout"`
|
2013-06-04 18:00:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Prepare(raw interface{}) (err error) {
|
2013-06-04 20:00:29 -04:00
|
|
|
err = mapstructure.Decode(raw, &b.config)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-06-04 19:52:59 -04:00
|
|
|
if b.config.DiskName == "" {
|
|
|
|
b.config.DiskName = "disk"
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.VMName == "" {
|
|
|
|
b.config.VMName = "packer"
|
|
|
|
}
|
|
|
|
|
2013-06-07 18:20:39 -04:00
|
|
|
if b.config.HTTPPortMin == 0 {
|
|
|
|
b.config.HTTPPortMin = 8000
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.HTTPPortMax == 0 {
|
|
|
|
b.config.HTTPPortMax = 9000
|
|
|
|
}
|
|
|
|
|
2013-06-07 17:48:59 -04:00
|
|
|
if b.config.VNCPortMin == 0 {
|
|
|
|
b.config.VNCPortMin = 5900
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.VNCPortMax == 0 {
|
|
|
|
b.config.VNCPortMax = 6000
|
|
|
|
}
|
|
|
|
|
2013-06-04 18:00:58 -04:00
|
|
|
if b.config.OutputDir == "" {
|
|
|
|
b.config.OutputDir = "vmware"
|
|
|
|
}
|
|
|
|
|
2013-06-06 17:46:48 -04:00
|
|
|
// Accumulate any errors
|
|
|
|
errs := make([]error, 0)
|
|
|
|
|
2013-06-07 18:20:39 -04:00
|
|
|
if b.config.HTTPPortMin > b.config.HTTPPortMax {
|
|
|
|
errs = append(errs, errors.New("http_port_min must be less than http_port_max"))
|
|
|
|
}
|
|
|
|
|
2013-06-06 17:46:48 -04:00
|
|
|
if b.config.ISOUrl == "" {
|
|
|
|
errs = append(errs, errors.New("An iso_url must be specified."))
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.SSHUser == "" {
|
|
|
|
errs = append(errs, errors.New("An ssh_username must be specified."))
|
|
|
|
}
|
|
|
|
|
2013-06-06 12:21:50 -04:00
|
|
|
if b.config.RawBootWait != "" {
|
|
|
|
b.config.BootWait, err = time.ParseDuration(b.config.RawBootWait)
|
|
|
|
if err != nil {
|
2013-06-06 17:46:48 -04:00
|
|
|
errs = append(errs, fmt.Errorf("Failed parsing boot_wait: %s", err))
|
2013-06-06 12:21:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-06 19:30:37 -04:00
|
|
|
if b.config.RawShutdownTimeout == "" {
|
|
|
|
b.config.RawShutdownTimeout = "5m"
|
|
|
|
}
|
|
|
|
|
|
|
|
b.config.ShutdownTimeout, err = time.ParseDuration(b.config.RawShutdownTimeout)
|
|
|
|
if err != nil {
|
|
|
|
errs = append(errs, fmt.Errorf("Failed parsing shutdown_timeout: %s", err))
|
|
|
|
}
|
|
|
|
|
2013-06-06 12:10:14 -04:00
|
|
|
if b.config.RawSSHWaitTimeout == "" {
|
|
|
|
b.config.RawSSHWaitTimeout = "20m"
|
|
|
|
}
|
|
|
|
|
|
|
|
b.config.SSHWaitTimeout, err = time.ParseDuration(b.config.RawSSHWaitTimeout)
|
|
|
|
if err != nil {
|
2013-06-06 17:46:48 -04:00
|
|
|
errs = append(errs, fmt.Errorf("Failed parsing ssh_wait_timeout: %s", err))
|
2013-06-06 12:10:14 -04:00
|
|
|
}
|
|
|
|
|
2013-06-07 17:48:59 -04:00
|
|
|
if b.config.VNCPortMin > b.config.VNCPortMax {
|
|
|
|
errs = append(errs, fmt.Errorf("vnc_port_min must be less than vnc_port_max"))
|
|
|
|
}
|
|
|
|
|
2013-06-06 15:19:38 -04:00
|
|
|
b.driver, err = b.newDriver()
|
|
|
|
if err != nil {
|
2013-06-06 17:46:48 -04:00
|
|
|
errs = append(errs, fmt.Errorf("Failed creating VMware driver: %s", err))
|
2013-06-06 17:38:14 -04:00
|
|
|
}
|
|
|
|
|
2013-06-06 17:46:48 -04:00
|
|
|
if len(errs) > 0 {
|
|
|
|
return &packer.MultiError{errs}
|
2013-06-06 15:19:38 -04:00
|
|
|
}
|
|
|
|
|
2013-06-04 18:00:58 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook) packer.Artifact {
|
2013-06-07 19:23:24 -04:00
|
|
|
// Seed the random number generator
|
|
|
|
rand.Seed(time.Now().UTC().UnixNano())
|
|
|
|
|
2013-06-04 18:00:58 -04:00
|
|
|
steps := []multistep.Step{
|
|
|
|
&stepPrepareOutputDir{},
|
|
|
|
&stepCreateDisk{},
|
2013-06-04 19:52:59 -04:00
|
|
|
&stepCreateVMX{},
|
2013-06-05 17:24:48 -04:00
|
|
|
&stepHTTPServer{},
|
2013-06-07 17:48:59 -04:00
|
|
|
&stepConfigureVNC{},
|
2013-06-05 18:12:43 -04:00
|
|
|
&stepRun{},
|
2013-06-05 20:15:16 -04:00
|
|
|
&stepTypeBootCommand{},
|
2013-06-05 23:53:34 -04:00
|
|
|
&stepWaitForSSH{},
|
2013-06-06 11:42:38 -04:00
|
|
|
&stepProvision{},
|
2013-06-06 19:30:37 -04:00
|
|
|
&stepShutdown{},
|
2013-06-04 18:00:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the state bag
|
|
|
|
state := make(map[string]interface{})
|
|
|
|
state["config"] = &b.config
|
2013-06-06 15:19:38 -04:00
|
|
|
state["driver"] = b.driver
|
2013-06-04 18:00:58 -04:00
|
|
|
state["hook"] = hook
|
|
|
|
state["ui"] = ui
|
|
|
|
|
|
|
|
// Run!
|
|
|
|
b.runner = &multistep.BasicRunner{Steps: steps}
|
|
|
|
b.runner.Run(state)
|
|
|
|
|
2013-06-06 18:12:54 -04:00
|
|
|
// If we were interrupted or cancelled, then just exit.
|
|
|
|
if _, ok := state[multistep.StateCancelled]; ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := state[multistep.StateHalted]; ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compile the artifact list
|
|
|
|
files := make([]string, 0, 10)
|
|
|
|
visit := func(path string, info os.FileInfo, err error) error {
|
|
|
|
files = append(files, path)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := filepath.Walk(b.config.OutputDir, visit); err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error collecting result files: %s", err))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Artifact{b.config.OutputDir, files}
|
2013-06-04 18:00:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Cancel() {
|
2013-06-05 20:52:37 -04:00
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
2013-06-04 18:00:58 -04:00
|
|
|
}
|
2013-06-06 15:19:38 -04:00
|
|
|
|
|
|
|
func (b *Builder) newDriver() (Driver, error) {
|
|
|
|
fusionAppPath := "/Applications/VMware Fusion.app"
|
2013-06-08 00:46:59 -04:00
|
|
|
driver := &Fusion5Driver{fusionAppPath}
|
|
|
|
if err := driver.Verify(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return driver, nil
|
2013-06-06 15:19:38 -04:00
|
|
|
}
|