2013-12-24 00:58:41 -05:00
|
|
|
package iso
|
2013-11-07 15:28:41 -05:00
|
|
|
|
|
|
|
import (
|
2018-01-22 18:32:33 -05:00
|
|
|
"context"
|
2013-11-07 15:28:41 -05:00
|
|
|
"fmt"
|
2017-07-23 01:31:46 -04:00
|
|
|
"log"
|
|
|
|
|
2017-04-04 16:39:01 -04:00
|
|
|
vmwcommon "github.com/hashicorp/packer/builder/vmware/common"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2013-11-07 15:28:41 -05:00
|
|
|
)
|
|
|
|
|
2017-07-24 00:17:18 -04:00
|
|
|
// stepRemoteUpload uploads some thing from the state bag to a remote driver
|
|
|
|
// (if it can) and stores that new remote path into the state bag.
|
2013-11-07 15:28:41 -05:00
|
|
|
type stepRemoteUpload struct {
|
2017-03-17 20:02:43 -04:00
|
|
|
Key string
|
|
|
|
Message string
|
|
|
|
DoCleanup bool
|
2013-11-07 15:28:41 -05:00
|
|
|
}
|
|
|
|
|
2018-01-22 18:31:41 -05:00
|
|
|
func (s *stepRemoteUpload) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
2013-12-24 13:31:57 -05:00
|
|
|
driver := state.Get("driver").(vmwcommon.Driver)
|
2013-11-07 15:28:41 -05:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
|
|
|
remote, ok := driver.(RemoteDriver)
|
|
|
|
if !ok {
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2014-05-03 05:23:20 -04:00
|
|
|
path, ok := state.Get(s.Key).(string)
|
|
|
|
if !ok {
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2015-05-27 17:16:28 -04:00
|
|
|
config := state.Get("config").(*Config)
|
2014-06-12 01:33:34 -04:00
|
|
|
checksum := config.ISOChecksum
|
|
|
|
checksumType := config.ISOChecksumType
|
|
|
|
|
2017-11-10 21:55:26 -05:00
|
|
|
if esx5, ok := remote.(*ESX5Driver); ok {
|
|
|
|
remotePath := esx5.cachePath(path)
|
|
|
|
|
|
|
|
if esx5.verifyChecksum(checksumType, checksum, remotePath) {
|
|
|
|
ui.Say("Remote cache was verified skipping remote upload...")
|
|
|
|
state.Put(s.Key, remotePath)
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-07-24 00:11:30 -04:00
|
|
|
ui.Say(s.Message)
|
|
|
|
log.Printf("Remote uploading: %s", path)
|
|
|
|
newPath, err := remote.UploadISO(path, checksum, checksumType)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error uploading file: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
2013-11-07 15:28:41 -05:00
|
|
|
}
|
2017-07-24 00:11:30 -04:00
|
|
|
state.Put(s.Key, newPath)
|
2013-11-07 15:28:41 -05:00
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepRemoteUpload) Cleanup(state multistep.StateBag) {
|
2017-03-17 20:02:43 -04:00
|
|
|
if !s.DoCleanup {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
driver := state.Get("driver").(vmwcommon.Driver)
|
|
|
|
|
|
|
|
remote, ok := driver.(RemoteDriver)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
path, ok := state.Get(s.Key).(string)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Cleaning up remote path: %s", path)
|
2018-04-26 13:56:48 -04:00
|
|
|
err := remote.RemoveCache(path)
|
2017-03-17 20:02:43 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error cleaning up: %s", err)
|
|
|
|
}
|
2013-11-07 15:28:41 -05:00
|
|
|
}
|