packer-cn/builder/vmware/iso/step_create_disk.go

66 lines
1.9 KiB
Go
Raw Normal View History

2013-12-24 00:58:41 -05:00
package iso
import (
"context"
"fmt"
2018-01-22 20:21:10 -05:00
"path/filepath"
2017-04-04 16:39:01 -04:00
vmwcommon "github.com/hashicorp/packer/builder/vmware/common"
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
)
2013-06-05 17:49:04 -04:00
// This step creates the virtual disks for the VM.
//
// Uses:
// config *config
2013-06-06 15:19:38 -04:00
// driver Driver
2013-06-05 17:49:04 -04:00
// ui packer.Ui
//
// Produces:
// full_disk_path (string) - The full path to the created disk.
type stepCreateDisk struct{}
func (stepCreateDisk) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
2015-05-27 17:16:28 -04:00
config := state.Get("config").(*Config)
2013-12-24 13:31:57 -05:00
driver := state.Get("driver").(vmwcommon.Driver)
2013-08-31 15:50:25 -04:00
ui := state.Get("ui").(packer.Ui)
ui.Say("Creating virtual machine disk")
2013-07-02 01:12:57 -04:00
full_disk_path := filepath.Join(config.OutputDir, config.DiskName+".vmdk")
if err := driver.CreateDisk(full_disk_path, fmt.Sprintf("%dM", config.DiskSize), config.DiskTypeId); err != nil {
2013-06-20 00:20:48 -04:00
err := fmt.Errorf("Error creating disk: %s", err)
2013-08-31 15:50:25 -04:00
state.Put("error", err)
2013-06-20 00:20:48 -04:00
ui.Error(err.Error())
return multistep.ActionHalt
}
2013-08-31 15:50:25 -04:00
state.Put("full_disk_path", full_disk_path)
2014-03-04 15:00:24 -05:00
if len(config.AdditionalDiskSize) > 0 {
// stash the disk paths we create
2014-03-04 15:00:24 -05:00
additional_paths := make([]string, len(config.AdditionalDiskSize))
ui.Say("Creating additional hard drives...")
for i, additionalsize := range config.AdditionalDiskSize {
2014-03-04 15:00:24 -05:00
additionalpath := filepath.Join(config.OutputDir, fmt.Sprintf("%s-%d.vmdk", config.DiskName, i+1))
size := fmt.Sprintf("%dM", uint64(additionalsize))
2014-03-04 15:00:24 -05:00
if err := driver.CreateDisk(additionalpath, size, config.DiskTypeId); err != nil {
err := fmt.Errorf("Error creating additional disk: %s", err)
2014-03-04 15:00:24 -05:00
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
2014-03-04 15:00:24 -05:00
additional_paths[i] = additionalpath
}
2014-03-04 15:00:24 -05:00
state.Put("additional_disk_paths", additional_paths)
}
return multistep.ActionContinue
}
2013-08-31 15:50:25 -04:00
func (stepCreateDisk) Cleanup(multistep.StateBag) {}