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