40 lines
977 B
Go
40 lines
977 B
Go
package vmware
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mitchellh/multistep"
|
|
"github.com/mitchellh/packer/packer"
|
|
"path/filepath"
|
|
)
|
|
|
|
// This step creates the virtual disks for the VM.
|
|
//
|
|
// Uses:
|
|
// config *config
|
|
// driver Driver
|
|
// ui packer.Ui
|
|
//
|
|
// Produces:
|
|
// <nothing>
|
|
type stepCreateDisk struct{}
|
|
|
|
func (stepCreateDisk) Run(state map[string]interface{}) multistep.StepAction {
|
|
// TODO(mitchellh): Configurable disk size
|
|
// TODO(mitchellh): Capture error output in case things go wrong to report it
|
|
|
|
config := state["config"].(*config)
|
|
driver := state["driver"].(Driver)
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
ui.Say("Creating virtual machine disk")
|
|
output := filepath.Join(config.OutputDir, config.DiskName+".vmdk")
|
|
if err := driver.CreateDisk(output, "40000M"); err != nil {
|
|
ui.Error(fmt.Sprintf("Error creating VMware disk: %s", err))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (stepCreateDisk) Cleanup(map[string]interface{}) {}
|