51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
|
package xenserver
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"github.com/mitchellh/multistep"
|
||
|
"github.com/mitchellh/packer/packer"
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
type stepDetachVdi struct {
|
||
|
VdiUuidKey string
|
||
|
}
|
||
|
|
||
|
func (self *stepDetachVdi) Run(state multistep.StateBag) multistep.StepAction {
|
||
|
ui := state.Get("ui").(packer.Ui)
|
||
|
client := state.Get("client").(XenAPIClient)
|
||
|
|
||
|
var vdiUuid string
|
||
|
if vdiUuidRaw, ok := state.GetOk(self.VdiUuidKey); ok {
|
||
|
vdiUuid = vdiUuidRaw.(string)
|
||
|
} else {
|
||
|
log.Printf("Skipping detach of '%s'", self.VdiUuidKey)
|
||
|
return multistep.ActionContinue
|
||
|
}
|
||
|
|
||
|
vdi, err := client.GetVdiByUuid(vdiUuid)
|
||
|
if err != nil {
|
||
|
ui.Error(fmt.Sprintf("Unable to get VDI from UUID '%s': %s", vdiUuid, err.Error()))
|
||
|
return multistep.ActionHalt
|
||
|
}
|
||
|
|
||
|
uuid := state.Get("instance_uuid").(string)
|
||
|
instance, err := client.GetVMByUuid(uuid)
|
||
|
if err != nil {
|
||
|
ui.Error(fmt.Sprintf("Unable to get VM from UUID '%s': %s", uuid, err.Error()))
|
||
|
return multistep.ActionHalt
|
||
|
}
|
||
|
|
||
|
err = instance.DisconnectVdi(vdi)
|
||
|
if err != nil {
|
||
|
ui.Error(fmt.Sprintf("Unable to detach VDI '%s': %s", vdiUuid, err.Error()))
|
||
|
return multistep.ActionHalt
|
||
|
}
|
||
|
|
||
|
log.Printf("Detached VDI '%s'", vdiUuid)
|
||
|
|
||
|
return multistep.ActionContinue
|
||
|
}
|
||
|
|
||
|
func (self *stepDetachVdi) Cleanup(state multistep.StateBag) {}
|