Files
Packer-Cn/builder/triton/step_stop_machine.go
T

43 lines
1.2 KiB
Go
Raw Normal View History

2016-04-14 17:29:27 -07:00
package triton
import (
2018-01-22 15:32:33 -08:00
"context"
2016-04-14 17:29:27 -07:00
"fmt"
"time"
2018-01-19 16:18:44 -08:00
"github.com/hashicorp/packer/helper/multistep"
2017-04-04 13:39:01 -07:00
"github.com/hashicorp/packer/packer"
2016-04-14 17:29:27 -07:00
)
// StepStopMachine stops the machine with the given Machine ID, and waits
// for it to reach the stopped state.
type StepStopMachine struct{}
func (s *StepStopMachine) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
2016-04-14 17:29:27 -07:00
driver := state.Get("driver").(Driver)
ui := state.Get("ui").(packer.Ui)
machineId := state.Get("machine").(string)
ui.Say(fmt.Sprintf("Stopping source machine (%s)...", machineId))
err := driver.StopMachine(machineId)
if err != nil {
state.Put("error", fmt.Errorf("Problem stopping source machine: %s", err))
return multistep.ActionHalt
}
ui.Say(fmt.Sprintf("Waiting for source machine to stop (%s)...", machineId))
err = driver.WaitForMachineState(machineId, "stopped", 10*time.Minute)
if err != nil {
state.Put("error", fmt.Errorf("Problem waiting for source machine to stop: %s", err))
return multistep.ActionHalt
}
return multistep.ActionContinue
}
func (s *StepStopMachine) Cleanup(state multistep.StateBag) {
// Explicitly don't clean up here as StepCreateSourceMachine will do it if necessary
// and there is no real meaning to cleaning this up.
}