59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
package iso
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/hashicorp/packer/builder/vsphere/driver"
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
type StepRemoteUpload struct {
|
|
Datastore string
|
|
Host string
|
|
}
|
|
|
|
func (s *StepRemoteUpload) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
|
ui := state.Get("ui").(packer.Ui)
|
|
d := state.Get("driver").(*driver.Driver)
|
|
|
|
if path, ok := state.GetOk("iso_path"); ok {
|
|
filename := filepath.Base(path.(string))
|
|
|
|
ds, err := d.FindDatastore(s.Datastore, s.Host)
|
|
if err != nil {
|
|
state.Put("error", fmt.Errorf("datastore doesn't exist: %v", err))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
remotePath := fmt.Sprintf("packer_cache/%s", filename)
|
|
remoteDirectory := fmt.Sprintf("[%s] packer_cache/", ds.Name())
|
|
fullRemotePath := fmt.Sprintf("%s/%s", remoteDirectory, filename)
|
|
|
|
ui.Say(fmt.Sprintf("Uploading %s to %s", filename, remotePath))
|
|
|
|
if exists := ds.FileExists(remotePath); exists == true {
|
|
ui.Say("File already uploaded; continuing")
|
|
state.Put("iso_remote_path", fullRemotePath)
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
if err := ds.MakeDirectory(remoteDirectory); err != nil {
|
|
state.Put("error", err)
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
if err := ds.UploadFile(path.(string), remotePath, s.Host); err != nil {
|
|
state.Put("error", err)
|
|
return multistep.ActionHalt
|
|
}
|
|
state.Put("iso_remote_path", fullRemotePath)
|
|
}
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *StepRemoteUpload) Cleanup(state multistep.StateBag) {}
|