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 18:00:58 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-08-01 15:11:54 -04:00
|
|
|
"github.com/mitchellh/packer/common"
|
2013-06-04 18:00:58 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-08-27 20:23:22 -04:00
|
|
|
"io/ioutil"
|
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-10 00:44:18 -04:00
|
|
|
"strings"
|
2013-07-01 13:40:38 -04:00
|
|
|
"text/template"
|
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
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
type config struct {
|
2013-07-16 00:28:49 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
2013-07-01 13:40:38 -04:00
|
|
|
DiskName string `mapstructure:"vmdk_name"`
|
|
|
|
DiskSize uint `mapstructure:"disk_size"`
|
2013-08-22 14:40:56 -04:00
|
|
|
DiskTypeId string `mapstructure:"disk_type_id"`
|
2013-07-08 23:56:23 -04:00
|
|
|
FloppyFiles []string `mapstructure:"floppy_files"`
|
2013-07-01 13:40:38 -04:00
|
|
|
GuestOSType string `mapstructure:"guest_os_type"`
|
2013-07-14 02:58:56 -04:00
|
|
|
ISOChecksum string `mapstructure:"iso_checksum"`
|
|
|
|
ISOChecksumType string `mapstructure:"iso_checksum_type"`
|
2013-08-15 15:02:01 -04:00
|
|
|
ISOUrls []string `mapstructure:"iso_urls"`
|
2013-07-01 13:40:38 -04:00
|
|
|
VMName string `mapstructure:"vm_name"`
|
|
|
|
OutputDir string `mapstructure:"output_directory"`
|
2013-07-02 00:13:13 -04:00
|
|
|
Headless bool `mapstructure:"headless"`
|
2013-07-01 13:40:38 -04:00
|
|
|
HTTPDir string `mapstructure:"http_directory"`
|
|
|
|
HTTPPortMin uint `mapstructure:"http_port_min"`
|
|
|
|
HTTPPortMax uint `mapstructure:"http_port_max"`
|
|
|
|
BootCommand []string `mapstructure:"boot_command"`
|
2013-07-02 20:22:11 -04:00
|
|
|
SkipCompaction bool `mapstructure:"skip_compaction"`
|
2013-07-01 13:40:38 -04:00
|
|
|
ShutdownCommand string `mapstructure:"shutdown_command"`
|
|
|
|
SSHUser string `mapstructure:"ssh_username"`
|
2013-08-28 01:57:42 -04:00
|
|
|
SSHKeyPath string `mapstructure:"ssh_key_path"`
|
2013-07-01 13:40:38 -04:00
|
|
|
SSHPassword string `mapstructure:"ssh_password"`
|
|
|
|
SSHPort uint `mapstructure:"ssh_port"`
|
2013-08-27 19:51:05 -04:00
|
|
|
SSHSkipRequestPty bool `mapstructure:"ssh_skip_request_pty"`
|
2013-07-01 13:40:38 -04:00
|
|
|
ToolsUploadFlavor string `mapstructure:"tools_upload_flavor"`
|
|
|
|
ToolsUploadPath string `mapstructure:"tools_upload_path"`
|
|
|
|
VMXData map[string]string `mapstructure:"vmx_data"`
|
2013-08-27 20:23:22 -04:00
|
|
|
VMXTemplatePath string `mapstructure:"vmx_template_path"`
|
2013-07-01 13:40:38 -04:00
|
|
|
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"`
|
2013-08-15 15:02:01 -04:00
|
|
|
RawSingleISOUrl string `mapstructure:"iso_url"`
|
2013-06-06 19:30:37 -04:00
|
|
|
RawShutdownTimeout string `mapstructure:"shutdown_timeout"`
|
|
|
|
RawSSHWaitTimeout string `mapstructure:"ssh_wait_timeout"`
|
2013-07-14 08:23:46 -04:00
|
|
|
|
2013-07-14 20:58:32 -04:00
|
|
|
bootWait time.Duration ``
|
|
|
|
shutdownTimeout time.Duration ``
|
|
|
|
sshWaitTimeout time.Duration ``
|
2013-08-15 22:17:23 -04:00
|
|
|
tpl *packer.ConfigTemplate
|
2013-06-04 18:00:58 -04:00
|
|
|
}
|
|
|
|
|
2013-06-14 15:29:48 -04:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) error {
|
2013-07-19 15:00:32 -04:00
|
|
|
md, err := common.DecodeConfig(&b.config, raws...)
|
2013-07-13 20:28:56 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
b.config.tpl, err = packer.NewConfigTemplate()
|
2013-08-08 19:18:01 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-08-09 17:21:31 -04:00
|
|
|
b.config.tpl.UserVars = b.config.PackerUserVars
|
2013-08-08 19:18:01 -04:00
|
|
|
|
2013-07-13 20:28:56 -04:00
|
|
|
// Accumulate any errors
|
2013-07-19 19:08:25 -04:00
|
|
|
errs := common.CheckUnusedConfig(md)
|
2013-07-13 20:28:56 -04:00
|
|
|
|
2013-06-04 19:52:59 -04:00
|
|
|
if b.config.DiskName == "" {
|
|
|
|
b.config.DiskName = "disk"
|
|
|
|
}
|
|
|
|
|
2013-06-23 18:07:19 -04:00
|
|
|
if b.config.DiskSize == 0 {
|
|
|
|
b.config.DiskSize = 40000
|
|
|
|
}
|
|
|
|
|
2013-08-22 14:40:56 -04:00
|
|
|
if b.config.DiskTypeId == "" {
|
|
|
|
// Default is growable virtual disk split in 2GB files.
|
|
|
|
b.config.DiskTypeId = "1"
|
|
|
|
}
|
|
|
|
|
2013-07-08 23:56:23 -04:00
|
|
|
if b.config.FloppyFiles == nil {
|
|
|
|
b.config.FloppyFiles = make([]string, 0)
|
|
|
|
}
|
|
|
|
|
2013-06-08 00:54:08 -04:00
|
|
|
if b.config.GuestOSType == "" {
|
|
|
|
b.config.GuestOSType = "other"
|
|
|
|
}
|
|
|
|
|
2013-06-04 19:52:59 -04:00
|
|
|
if b.config.VMName == "" {
|
2013-07-01 14:11:31 -04:00
|
|
|
b.config.VMName = fmt.Sprintf("packer-%s", b.config.PackerBuildName)
|
2013-06-04 19:52:59 -04:00
|
|
|
}
|
|
|
|
|
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-28 22:40:55 -04:00
|
|
|
if b.config.RawBootWait == "" {
|
|
|
|
b.config.RawBootWait = "10s"
|
|
|
|
}
|
|
|
|
|
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 == "" {
|
2013-07-01 14:11:31 -04:00
|
|
|
b.config.OutputDir = fmt.Sprintf("output-%s", b.config.PackerBuildName)
|
2013-06-04 18:00:58 -04:00
|
|
|
}
|
|
|
|
|
2013-06-23 17:30:52 -04:00
|
|
|
if b.config.SSHPort == 0 {
|
|
|
|
b.config.SSHPort = 22
|
|
|
|
}
|
|
|
|
|
2013-07-01 13:40:38 -04:00
|
|
|
if b.config.ToolsUploadPath == "" {
|
|
|
|
b.config.ToolsUploadPath = "{{ .Flavor }}.iso"
|
|
|
|
}
|
|
|
|
|
2013-08-08 19:18:01 -04:00
|
|
|
// Errors
|
|
|
|
templates := map[string]*string{
|
|
|
|
"disk_name": &b.config.DiskName,
|
|
|
|
"guest_os_type": &b.config.GuestOSType,
|
|
|
|
"http_directory": &b.config.HTTPDir,
|
|
|
|
"iso_checksum": &b.config.ISOChecksum,
|
|
|
|
"iso_checksum_type": &b.config.ISOChecksumType,
|
2013-08-15 15:02:01 -04:00
|
|
|
"iso_url": &b.config.RawSingleISOUrl,
|
2013-08-08 19:18:01 -04:00
|
|
|
"output_directory": &b.config.OutputDir,
|
|
|
|
"shutdown_command": &b.config.ShutdownCommand,
|
|
|
|
"ssh_password": &b.config.SSHPassword,
|
|
|
|
"ssh_username": &b.config.SSHUser,
|
|
|
|
"tools_upload_flavor": &b.config.ToolsUploadFlavor,
|
|
|
|
"vm_name": &b.config.VMName,
|
|
|
|
"boot_wait": &b.config.RawBootWait,
|
|
|
|
"shutdown_timeout": &b.config.RawShutdownTimeout,
|
|
|
|
"ssh_wait_timeout": &b.config.RawSSHWaitTimeout,
|
2013-08-27 20:23:22 -04:00
|
|
|
"vmx_template_path": &b.config.VMXTemplatePath,
|
2013-08-08 19:18:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for n, ptr := range templates {
|
|
|
|
var err error
|
|
|
|
*ptr, err = b.config.tpl.Process(*ptr, nil)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error processing %s: %s", n, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-15 15:02:01 -04:00
|
|
|
for i, url := range b.config.ISOUrls {
|
|
|
|
var err error
|
|
|
|
b.config.ISOUrls[i], err = b.config.tpl.Process(url, nil)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error processing iso_urls[%d]: %s", i, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-08 19:18:01 -04:00
|
|
|
for i, command := range b.config.BootCommand {
|
|
|
|
if err := b.config.tpl.Validate(command); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("Error processing boot_command[%d]: %s", i, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, file := range b.config.FloppyFiles {
|
|
|
|
var err error
|
|
|
|
b.config.FloppyFiles[i], err = b.config.tpl.Process(file, nil)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("Error processing floppy_files[%d]: %s",
|
|
|
|
i, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
newVMXData := make(map[string]string)
|
|
|
|
for k, v := range b.config.VMXData {
|
|
|
|
k, err = b.config.tpl.Process(k, nil)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("Error processing VMX data key %s: %s", k, err))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err = b.config.tpl.Process(v, nil)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("Error processing VMX data value '%s': %s", v, err))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
newVMXData[k] = v
|
|
|
|
}
|
|
|
|
|
|
|
|
b.config.VMXData = newVMXData
|
|
|
|
|
2013-06-07 18:20:39 -04:00
|
|
|
if b.config.HTTPPortMin > b.config.HTTPPortMax {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("http_port_min must be less than http_port_max"))
|
2013-06-07 18:20:39 -04:00
|
|
|
}
|
|
|
|
|
2013-07-14 02:58:56 -04:00
|
|
|
if b.config.ISOChecksum == "" {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("Due to large file sizes, an iso_checksum is required"))
|
2013-06-10 02:00:07 -04:00
|
|
|
} else {
|
2013-07-14 02:58:56 -04:00
|
|
|
b.config.ISOChecksum = strings.ToLower(b.config.ISOChecksum)
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.ISOChecksumType == "" {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("The iso_checksum_type must be specified."))
|
2013-07-14 02:58:56 -04:00
|
|
|
} else {
|
|
|
|
b.config.ISOChecksumType = strings.ToLower(b.config.ISOChecksumType)
|
|
|
|
if h := common.HashForType(b.config.ISOChecksumType); h == nil {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
2013-07-14 02:58:56 -04:00
|
|
|
errs,
|
|
|
|
fmt.Errorf("Unsupported checksum type: %s", b.config.ISOChecksumType))
|
|
|
|
}
|
2013-06-10 01:47:58 -04:00
|
|
|
}
|
|
|
|
|
2013-08-15 15:02:01 -04:00
|
|
|
if b.config.RawSingleISOUrl == "" && len(b.config.ISOUrls) == 0 {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
2013-08-15 15:02:01 -04:00
|
|
|
errs, errors.New("One of iso_url or iso_urls must be specified."))
|
|
|
|
} else if b.config.RawSingleISOUrl != "" && len(b.config.ISOUrls) > 0 {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("Only one of iso_url or iso_urls may be specified."))
|
|
|
|
} else if b.config.RawSingleISOUrl != "" {
|
|
|
|
b.config.ISOUrls = []string{b.config.RawSingleISOUrl}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, url := range b.config.ISOUrls {
|
|
|
|
b.config.ISOUrls[i], err = common.DownloadableURL(url)
|
2013-06-10 00:44:18 -04:00
|
|
|
if err != nil {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
2013-08-15 15:02:01 -04:00
|
|
|
errs, fmt.Errorf("Failed to parse iso_url %d: %s", i+1, err))
|
2013-06-10 01:08:53 -04:00
|
|
|
}
|
2013-06-06 17:46:48 -04:00
|
|
|
}
|
|
|
|
|
2013-07-13 01:47:08 -04:00
|
|
|
if !b.config.PackerForce {
|
|
|
|
if _, err := os.Stat(b.config.OutputDir); err == nil {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
2013-07-13 01:47:08 -04:00
|
|
|
errs,
|
2013-07-20 00:36:59 -04:00
|
|
|
fmt.Errorf("Output directory '%s' already exists. It must not exist.", b.config.OutputDir))
|
2013-07-12 00:43:23 -04:00
|
|
|
}
|
2013-06-27 22:15:24 -04:00
|
|
|
}
|
|
|
|
|
2013-08-28 01:57:42 -04:00
|
|
|
if b.config.SSHKeyPath != "" {
|
|
|
|
if _, err := os.Stat(b.config.SSHKeyPath); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("ssh_key_path is invalid: %s", err))
|
|
|
|
} else if _, err := sshKeyToKeyring(b.config.SSHKeyPath); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("ssh_key_path is invalid: %s", err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-06 17:46:48 -04:00
|
|
|
if b.config.SSHUser == "" {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("An ssh_username must be specified."))
|
2013-06-06 17:46:48 -04:00
|
|
|
}
|
|
|
|
|
2013-06-06 12:21:50 -04:00
|
|
|
if b.config.RawBootWait != "" {
|
2013-07-14 08:23:46 -04:00
|
|
|
b.config.bootWait, err = time.ParseDuration(b.config.RawBootWait)
|
2013-06-06 12:21:50 -04:00
|
|
|
if err != nil {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2013-07-14 08:23:46 -04:00
|
|
|
b.config.shutdownTimeout, err = time.ParseDuration(b.config.RawShutdownTimeout)
|
2013-06-06 19:30:37 -04:00
|
|
|
if err != nil {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Failed parsing shutdown_timeout: %s", err))
|
2013-06-06 19:30:37 -04:00
|
|
|
}
|
|
|
|
|
2013-06-06 12:10:14 -04:00
|
|
|
if b.config.RawSSHWaitTimeout == "" {
|
|
|
|
b.config.RawSSHWaitTimeout = "20m"
|
|
|
|
}
|
|
|
|
|
2013-07-14 08:23:46 -04:00
|
|
|
b.config.sshWaitTimeout, err = time.ParseDuration(b.config.RawSSHWaitTimeout)
|
2013-06-06 12:10:14 -04:00
|
|
|
if err != nil {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Failed parsing ssh_wait_timeout: %s", err))
|
2013-06-06 12:10:14 -04:00
|
|
|
}
|
|
|
|
|
2013-07-01 13:40:38 -04:00
|
|
|
if _, err := template.New("path").Parse(b.config.ToolsUploadPath); err != nil {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("tools_upload_path invalid: %s", err))
|
2013-07-01 13:40:38 -04:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:23:22 -04:00
|
|
|
if b.config.VMXTemplatePath != "" {
|
|
|
|
if err := b.validateVMXTemplatePath(); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("vmx_template_path is invalid: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-07 17:48:59 -04:00
|
|
|
if b.config.VNCPortMin > b.config.VNCPortMax {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("vnc_port_min must be less than vnc_port_max"))
|
2013-06-07 17:48:59 -04:00
|
|
|
}
|
|
|
|
|
2013-07-19 19:08:25 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
|
|
return errs
|
2013-06-06 15:19:38 -04:00
|
|
|
}
|
|
|
|
|
2013-06-04 18:00:58 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-06-12 19:06:56 -04:00
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
2013-08-13 11:54:12 -04:00
|
|
|
// Initialize the driver that will handle our interaction with VMware
|
|
|
|
driver, err := NewDriver()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Failed creating VMware driver: %s", err)
|
|
|
|
}
|
|
|
|
|
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{
|
2013-07-01 13:40:38 -04:00
|
|
|
&stepPrepareTools{},
|
2013-08-15 14:17:10 -04:00
|
|
|
&common.StepDownload{
|
|
|
|
Checksum: b.config.ISOChecksum,
|
|
|
|
ChecksumType: b.config.ISOChecksumType,
|
|
|
|
Description: "ISO",
|
|
|
|
ResultKey: "iso_path",
|
2013-08-15 15:02:01 -04:00
|
|
|
Url: b.config.ISOUrls,
|
2013-08-15 14:17:10 -04:00
|
|
|
},
|
2013-06-04 18:00:58 -04:00
|
|
|
&stepPrepareOutputDir{},
|
2013-07-08 23:56:23 -04:00
|
|
|
&common.StepCreateFloppy{
|
|
|
|
Files: b.config.FloppyFiles,
|
|
|
|
},
|
2013-06-04 18:00:58 -04:00
|
|
|
&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-07-15 01:22:13 -04:00
|
|
|
&common.StepConnectSSH{
|
|
|
|
SSHAddress: sshAddress,
|
|
|
|
SSHConfig: sshConfig,
|
|
|
|
SSHWaitTimeout: b.config.sshWaitTimeout,
|
2013-08-27 19:51:05 -04:00
|
|
|
NoPty: b.config.SSHSkipRequestPty,
|
2013-07-15 01:22:13 -04:00
|
|
|
},
|
2013-06-29 23:08:27 -04:00
|
|
|
&stepUploadTools{},
|
2013-07-16 02:44:41 -04:00
|
|
|
&common.StepProvision{},
|
2013-06-06 19:30:37 -04:00
|
|
|
&stepShutdown{},
|
2013-06-29 16:23:42 -04:00
|
|
|
&stepCleanFiles{},
|
2013-07-08 23:56:23 -04:00
|
|
|
&stepCleanVMX{},
|
2013-07-01 22:25:33 -04:00
|
|
|
&stepCompactDisk{},
|
2013-06-04 18:00:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the state bag
|
|
|
|
state := make(map[string]interface{})
|
2013-06-10 01:08:53 -04:00
|
|
|
state["cache"] = cache
|
2013-06-04 18:00:58 -04:00
|
|
|
state["config"] = &b.config
|
2013-08-13 11:54:12 -04:00
|
|
|
state["driver"] = driver
|
2013-06-04 18:00:58 -04:00
|
|
|
state["hook"] = hook
|
|
|
|
state["ui"] = ui
|
|
|
|
|
|
|
|
// Run!
|
2013-06-14 18:07:34 -04:00
|
|
|
if b.config.PackerDebug {
|
2013-06-14 18:24:53 -04:00
|
|
|
b.runner = &multistep.DebugRunner{
|
2013-06-14 18:47:06 -04:00
|
|
|
Steps: steps,
|
2013-06-14 18:24:53 -04:00
|
|
|
PauseFn: common.MultistepDebugFn(ui),
|
|
|
|
}
|
2013-06-14 18:07:34 -04:00
|
|
|
} else {
|
|
|
|
b.runner = &multistep.BasicRunner{Steps: steps}
|
|
|
|
}
|
2013-06-20 00:20:48 -04:00
|
|
|
|
2013-06-04 18:00:58 -04:00
|
|
|
b.runner.Run(state)
|
|
|
|
|
2013-06-20 00:20:48 -04:00
|
|
|
// If there was an error, return that
|
|
|
|
if rawErr, ok := state["error"]; ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
2013-06-06 18:12:54 -04:00
|
|
|
// If we were interrupted or cancelled, then just exit.
|
|
|
|
if _, ok := state[multistep.StateCancelled]; ok {
|
2013-06-20 00:20:48 -04:00
|
|
|
return nil, errors.New("Build was cancelled.")
|
2013-06-06 18:12:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := state[multistep.StateHalted]; ok {
|
2013-06-20 00:20:48 -04:00
|
|
|
return nil, errors.New("Build was halted.")
|
2013-06-06 18:12:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compile the artifact list
|
|
|
|
files := make([]string, 0, 10)
|
|
|
|
visit := func(path string, info os.FileInfo, err error) error {
|
2013-06-29 16:23:42 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-06-29 16:00:34 -04:00
|
|
|
if !info.IsDir() {
|
|
|
|
files = append(files, path)
|
|
|
|
}
|
|
|
|
|
2013-06-29 16:23:42 -04:00
|
|
|
return nil
|
2013-06-06 18:12:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := filepath.Walk(b.config.OutputDir, visit); err != nil {
|
2013-06-12 19:06:56 -04:00
|
|
|
return nil, err
|
2013-06-06 18:12:54 -04:00
|
|
|
}
|
|
|
|
|
2013-06-12 19:06:56 -04:00
|
|
|
return &Artifact{b.config.OutputDir, files}, nil
|
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-08-27 20:23:22 -04:00
|
|
|
|
|
|
|
func (b *Builder) validateVMXTemplatePath() error {
|
|
|
|
f, err := os.Open(b.config.VMXTemplatePath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
data, err := ioutil.ReadAll(f)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.config.tpl.Validate(string(data))
|
|
|
|
}
|