48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package iso
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mitchellh/multistep"
|
|
vmwcommon "github.com/mitchellh/packer/builder/vmware/common"
|
|
"github.com/mitchellh/packer/packer"
|
|
"path/filepath"
|
|
)
|
|
|
|
// This step upload the VMX to the remote host
|
|
//
|
|
// Uses:
|
|
// driver Driver
|
|
// ui packer.Ui
|
|
// vmx_path string
|
|
//
|
|
// Produces:
|
|
// <nothing>
|
|
type StepUploadVMX struct {
|
|
RemoteType string
|
|
}
|
|
|
|
func (c *StepUploadVMX) Run(state multistep.StateBag) multistep.StepAction {
|
|
driver := state.Get("driver").(vmwcommon.Driver)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
vmxPath := state.Get("vmx_path").(string)
|
|
|
|
if c.RemoteType == "esx5" {
|
|
remoteDriver, ok := driver.(RemoteDriver)
|
|
if ok {
|
|
remoteVmxPath := filepath.ToSlash(filepath.Join(fmt.Sprintf("%s", remoteDriver), filepath.Base(vmxPath)))
|
|
if err := remoteDriver.upload(remoteVmxPath, vmxPath); err != nil {
|
|
state.Put("error", fmt.Errorf("Error writing VMX: %s", err))
|
|
return multistep.ActionHalt
|
|
}
|
|
}
|
|
if err := remoteDriver.ReloadVM(); err != nil {
|
|
ui.Error(fmt.Sprintf("Error reload VM: %s", err))
|
|
}
|
|
}
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (StepUploadVMX) Cleanup(multistep.StateBag) {}
|