package qemu import ( "context" "fmt" "path/filepath" "github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/packer" ) // This step resizes the virtual disk that will be used as the // hard drive for the virtual machine. type stepResizeDisk struct{} func (s *stepResizeDisk) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction { config := state.Get("config").(*Config) driver := state.Get("driver").(Driver) ui := state.Get("ui").(packer.Ui) path := filepath.Join(config.OutputDir, config.VMName) command := []string{ "resize", "-f", config.Format, path, fmt.Sprintf("%vM", config.DiskSize), } if config.DiskImage == false { return multistep.ActionContinue } ui.Say("Resizing hard drive...") if err := driver.QemuImg(command...); err != nil { err := fmt.Errorf("Error creating hard drive: %s", err) state.Put("error", err) ui.Error(err.Error()) return multistep.ActionHalt } return multistep.ActionContinue } func (s *stepResizeDisk) Cleanup(state multistep.StateBag) {}