2014-07-17 10:01:19 -04:00
|
|
|
package qemu
|
|
|
|
|
|
|
|
import (
|
2018-01-22 18:32:33 -05:00
|
|
|
"context"
|
2014-07-17 10:01:19 -04:00
|
|
|
"fmt"
|
2015-05-17 10:35:39 -04:00
|
|
|
"path/filepath"
|
|
|
|
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2014-07-17 10:01:19 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// This step resizes the virtual disk that will be used as the
|
|
|
|
// hard drive for the virtual machine.
|
|
|
|
type stepResizeDisk struct{}
|
|
|
|
|
2018-01-22 18:31:41 -05:00
|
|
|
func (s *stepResizeDisk) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
2015-05-27 16:39:43 -04:00
|
|
|
config := state.Get("config").(*Config)
|
2014-07-17 10:01:19 -04:00
|
|
|
driver := state.Get("driver").(Driver)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2015-05-17 10:35:39 -04:00
|
|
|
path := filepath.Join(config.OutputDir, config.VMName)
|
2014-07-17 10:01:19 -04:00
|
|
|
|
|
|
|
command := []string{
|
|
|
|
"resize",
|
|
|
|
path,
|
|
|
|
fmt.Sprintf("%vM", config.DiskSize),
|
|
|
|
}
|
|
|
|
|
2014-10-28 11:43:19 -04:00
|
|
|
if config.DiskImage == false {
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
2014-07-17 10:01:19 -04:00
|
|
|
|
|
|
|
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) {}
|