package iso import ( "github.com/hashicorp/packer/packer" "github.com/jetbrains-infra/packer-builder-vsphere/driver" "github.com/hashicorp/packer/helper/multistep" "github.com/vmware/govmomi/vim25/types" "context" ) type StepRemoveFloppy struct { Datastore string Host string } func (s *StepRemoveFloppy) Run(_ context.Context, state multistep.StateBag) multistep.StepAction { ui := state.Get("ui").(packer.Ui) vm := state.Get("vm").(*driver.VirtualMachine) d := state.Get("driver").(*driver.Driver) ui.Say("Deleting Floppy drives...") devices, err := vm.Devices() if err != nil { state.Put("error", err) return multistep.ActionHalt } floppies := devices.SelectByType((*types.VirtualFloppy)(nil)) if err = vm.RemoveDevice(true, floppies...); err != nil { state.Put("error", err) return multistep.ActionHalt } if UploadedFloppyPath, ok := state.GetOk("uploaded_floppy_path"); ok { ui.Say("Deleting Floppy image...") ds, err := d.FindDatastore(s.Datastore, s.Host) if err != nil { state.Put("error", err) return multistep.ActionHalt } if err := ds.Delete(UploadedFloppyPath.(string)); err != nil { state.Put("error", err) return multistep.ActionHalt } } return multistep.ActionContinue } func (s *StepRemoveFloppy) Cleanup(state multistep.StateBag) {}