packer-cn/builder/virtualbox/common/step_upload_guest_additions.go

73 lines
2.0 KiB
Go
Raw Normal View History

package common
import (
"context"
"fmt"
"log"
"os"
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/template/interpolate"
)
type guestAdditionsPathTemplate struct {
Version string
}
// This step uploads the guest additions ISO to the VM.
type StepUploadGuestAdditions struct {
GuestAdditionsMode string
GuestAdditionsPath string
Ctx interpolate.Context
}
func (s *StepUploadGuestAdditions) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
2013-08-31 15:44:58 -04:00
comm := state.Get("communicator").(packer.Communicator)
driver := state.Get("driver").(Driver)
2013-08-31 15:44:58 -04:00
ui := state.Get("ui").(packer.Ui)
// If we're attaching then don't do this, since we attached.
if s.GuestAdditionsMode != GuestAdditionsModeUpload {
log.Println("Not uploading guest additions since mode is not upload")
return multistep.ActionContinue
}
// Get the guest additions path since we're doing it
guestAdditionsPath := state.Get("guest_additions_path").(string)
version, err := driver.Version()
if err != nil {
2013-08-31 15:44:58 -04:00
state.Put("error", fmt.Errorf("Error reading version for guest additions upload: %s", err))
return multistep.ActionHalt
}
f, err := os.Open(guestAdditionsPath)
if err != nil {
2013-08-31 15:44:58 -04:00
state.Put("error", fmt.Errorf("Error opening guest additions ISO: %s", err))
return multistep.ActionHalt
}
s.Ctx.Data = &guestAdditionsPathTemplate{
Version: version,
}
s.GuestAdditionsPath, err = interpolate.Render(s.GuestAdditionsPath, &s.Ctx)
if err != nil {
err := fmt.Errorf("Error preparing guest additions path: %s", err)
2013-08-31 15:44:58 -04:00
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
ui.Say("Uploading VirtualBox guest additions ISO...")
if err := comm.Upload(s.GuestAdditionsPath, f, nil); err != nil {
2013-08-31 15:44:58 -04:00
state.Put("error", fmt.Errorf("Error uploading guest additions: %s", err))
return multistep.ActionHalt
}
return multistep.ActionContinue
}
func (s *StepUploadGuestAdditions) Cleanup(state multistep.StateBag) {}