2013-12-21 18:20:15 -05:00
|
|
|
package ovf
|
|
|
|
|
|
|
|
import (
|
2013-12-21 20:38:06 -05:00
|
|
|
"errors"
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
vboxcommon "github.com/mitchellh/packer/builder/virtualbox/common"
|
|
|
|
"github.com/mitchellh/packer/common"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-12-21 18:20:15 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Builder implements packer.Builder and builds the actual VirtualBox
|
|
|
|
// images.
|
|
|
|
type Builder struct {
|
|
|
|
config *Config
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare processes the build configuration parameters.
|
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
|
|
|
c, warnings, errs := NewConfig(raws...)
|
|
|
|
if errs != nil {
|
|
|
|
return warnings, errs
|
|
|
|
}
|
|
|
|
b.config = c
|
|
|
|
|
|
|
|
return warnings, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run executes a Packer build and returns a packer.Artifact representing
|
|
|
|
// a VirtualBox appliance.
|
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
|
|
|
// Set up the state.
|
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("config", b.config)
|
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
|
|
|
|
|
|
|
// Build the steps.
|
|
|
|
steps := []multistep.Step{
|
2013-12-21 20:38:06 -05:00
|
|
|
/*
|
|
|
|
new(stepDownloadGuestAdditions),
|
|
|
|
*/
|
2013-12-21 19:04:41 -05:00
|
|
|
&vboxcommon.StepOutputDir{
|
|
|
|
Force: b.config.PackerForce,
|
|
|
|
Path: b.config.OutputDir,
|
|
|
|
},
|
2013-12-21 20:38:06 -05:00
|
|
|
new(vboxcommon.StepSuppressMessages),
|
2013-12-22 10:58:07 -05:00
|
|
|
&common.StepCreateFloppy{
|
|
|
|
Files: b.config.FloppyFiles,
|
|
|
|
},
|
2013-12-21 20:38:06 -05:00
|
|
|
/*
|
|
|
|
new(stepAttachGuestAdditions),
|
2013-12-22 11:10:11 -05:00
|
|
|
*/
|
|
|
|
new(vboxcommon.StepAttachFloppy),
|
2013-12-22 12:08:09 -05:00
|
|
|
&vboxcommon.StepForwardSSH{
|
|
|
|
GuestPort: b.config.SSHPort,
|
|
|
|
HostPortMin: b.config.SSHHostPortMin,
|
|
|
|
HostPortMax: b.config.SSHHostPortMax,
|
|
|
|
},
|
2013-12-22 11:10:11 -05:00
|
|
|
/*
|
2013-12-21 20:38:06 -05:00
|
|
|
new(stepVBoxManage),
|
|
|
|
new(stepRun),
|
2013-12-22 12:08:09 -05:00
|
|
|
*/
|
|
|
|
&common.StepConnectSSH{
|
|
|
|
SSHAddress: vboxcommon.SSHAddress,
|
|
|
|
SSHConfig: vboxcommon.SSHConfigFunc(b.config.SSHConfig),
|
|
|
|
SSHWaitTimeout: b.config.SSHWaitTimeout,
|
|
|
|
},
|
|
|
|
/*
|
2013-12-21 20:38:06 -05:00
|
|
|
new(stepUploadVersion),
|
|
|
|
new(stepUploadGuestAdditions),
|
|
|
|
new(common.StepProvision),
|
|
|
|
new(stepShutdown),
|
|
|
|
new(stepRemoveDevices),
|
|
|
|
new(stepExport),
|
|
|
|
*/
|
2013-12-21 18:20:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the steps.
|
|
|
|
if b.config.PackerDebug {
|
|
|
|
b.runner = &multistep.DebugRunner{
|
|
|
|
Steps: steps,
|
|
|
|
PauseFn: common.MultistepDebugFn(ui),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
b.runner = &multistep.BasicRunner{Steps: steps}
|
|
|
|
}
|
|
|
|
b.runner.Run(state)
|
|
|
|
|
|
|
|
// Report any errors.
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we were interrupted or cancelled, then just exit.
|
|
|
|
if _, ok := state.GetOk(multistep.StateCancelled); ok {
|
|
|
|
return nil, errors.New("Build was cancelled.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := state.GetOk(multistep.StateHalted); ok {
|
|
|
|
return nil, errors.New("Build was halted.")
|
|
|
|
}
|
|
|
|
|
2013-12-21 20:38:06 -05:00
|
|
|
return vboxcommon.NewArtifact(b.config.OutputDir)
|
2013-12-21 18:20:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cancel.
|
|
|
|
func (b *Builder) Cancel() {
|
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
|
|
|
}
|