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

103 lines
2.6 KiB
Go
Raw Normal View History

2013-12-22 12:37:27 -05:00
package common
2013-06-12 21:02:42 -04:00
import (
"context"
"errors"
2013-06-12 21:02:42 -04:00
"fmt"
"log"
"time"
2018-01-22 20:21:10 -05:00
2020-11-17 19:31:03 -05:00
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
2013-06-12 21:02:42 -04:00
)
// This step shuts down the machine. It first attempts to do so gracefully,
// but ultimately forcefully shuts it down if that fails.
//
// Uses:
// communicator packersdk.Communicator
2013-06-12 21:02:42 -04:00
// driver Driver
// ui packersdk.Ui
2013-06-12 21:02:42 -04:00
// vmName string
//
// Produces:
// <nothing>
2013-12-22 12:37:27 -05:00
type StepShutdown struct {
Command string
Timeout time.Duration
Delay time.Duration
DisableShutdown bool
ACPIShutdown bool
2013-12-22 12:37:27 -05:00
}
2013-06-12 21:02:42 -04:00
func (s *StepShutdown) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
comm := state.Get("communicator").(packersdk.Communicator)
2013-12-22 12:37:27 -05:00
driver := state.Get("driver").(Driver)
ui := state.Get("ui").(packersdk.Ui)
2013-08-31 15:44:58 -04:00
vmName := state.Get("vmName").(string)
2013-06-12 21:02:42 -04:00
if s.ACPIShutdown {
ui.Say("Shuting down the virtual machine via ACPI power button...")
if err := driver.StopViaACPI(vmName); err != nil {
err := fmt.Errorf("Error stopping VM: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
} else if !s.DisableShutdown {
if s.Command != "" {
ui.Say("Gracefully halting virtual machine...")
log.Printf("Executing shutdown command: %s", s.Command)
cmd := &packersdk.RemoteCmd{Command: s.Command}
if err := cmd.RunWithUi(ctx, comm, ui); err != nil {
err := fmt.Errorf("Failed to send shutdown command: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
2013-06-12 21:02:42 -04:00
} else {
ui.Say("Halting the virtual machine...")
if err := driver.Stop(vmName); err != nil {
err := fmt.Errorf("Error stopping VM: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
}
} else {
ui.Say("Automatic shutdown disabled. Please shutdown virtual machine.")
}
// Wait for the machine to actually shut down
log.Printf("Waiting max %s for shutdown to complete", s.Timeout)
shutdownTimer := time.After(s.Timeout)
for {
running, _ := driver.IsRunning(vmName)
if !running {
if s.Delay.Nanoseconds() > 0 {
log.Printf("Delay for %s after shutdown to allow locks to clear...", s.Delay)
time.Sleep(s.Delay)
2013-06-12 21:02:42 -04:00
}
break
2013-06-12 21:02:42 -04:00
}
select {
case <-shutdownTimer:
err := errors.New("Timeout while waiting for machine to shutdown.")
2013-08-31 15:44:58 -04:00
state.Put("error", err)
ui.Error(err.Error())
2013-06-12 21:02:42 -04:00
return multistep.ActionHalt
default:
time.Sleep(500 * time.Millisecond)
2013-06-12 21:02:42 -04:00
}
}
log.Println("VM shut down.")
return multistep.ActionContinue
}
2013-12-22 12:37:27 -05:00
func (s *StepShutdown) Cleanup(state multistep.StateBag) {}