package qemu import ( "context" "fmt" "path/filepath" "github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/packer" ) // This step copies the virtual disk that will be used as the // hard drive for the virtual machine. type stepCopyDisk struct { DiskImage bool Format string OutputDir string UseBackingFile bool VMName string QemuImgArgs QemuImgArgs } func (s *stepCopyDisk) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction { driver := state.Get("driver").(Driver) isoPath := state.Get("iso_path").(string) ui := state.Get("ui").(packer.Ui) path := filepath.Join(s.OutputDir, s.VMName) if !s.DiskImage || s.UseBackingFile { return multistep.ActionContinue } // isoPath extention is: ext := filepath.Ext(isoPath) if ext[1:] == s.Format { ui.Message("File extension already matches desired output format. " + "Skipping qemu-img convert step") err := driver.Copy(isoPath, path) if err != nil { state.Put("error", err) ui.Error(err.Error()) return multistep.ActionHalt } return multistep.ActionContinue } command := s.buildConvertCommand(isoPath, path) ui.Say("Copying 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 *stepCopyDisk) buildConvertCommand(sourcePath, targetPath string) []string { command := []string{"convert"} // Add user-provided convert args command = append(command, s.QemuImgArgs.Convert...) // Add format, and paths. command = append(command, "-O", s.Format, sourcePath, targetPath) return command } func (s *stepCopyDisk) Cleanup(state multistep.StateBag) {}