40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
|
package linode
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
|
||
|
"github.com/hashicorp/packer/helper/multistep"
|
||
|
"github.com/hashicorp/packer/packer"
|
||
|
"github.com/linode/linodego"
|
||
|
)
|
||
|
|
||
|
type stepShutdownLinode struct {
|
||
|
client linodego.Client
|
||
|
}
|
||
|
|
||
|
func (s *stepShutdownLinode) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
||
|
ui := state.Get("ui").(packer.Ui)
|
||
|
instance := state.Get("instance").(*linodego.Instance)
|
||
|
|
||
|
ui.Say("Shutting down Linode...")
|
||
|
if err := s.client.ShutdownInstance(ctx, instance.ID); err != nil {
|
||
|
err = errors.New("Error shutting down Linode: " + err.Error())
|
||
|
state.Put("error", err)
|
||
|
ui.Error(err.Error())
|
||
|
return multistep.ActionHalt
|
||
|
}
|
||
|
|
||
|
_, err := s.client.WaitForInstanceStatus(ctx, instance.ID, linodego.InstanceOffline, 120)
|
||
|
if err != nil {
|
||
|
err = errors.New("Error shutting down Linode: " + err.Error())
|
||
|
state.Put("error", err)
|
||
|
ui.Error(err.Error())
|
||
|
return multistep.ActionHalt
|
||
|
}
|
||
|
|
||
|
return multistep.ActionContinue
|
||
|
}
|
||
|
|
||
|
func (s *stepShutdownLinode) Cleanup(state multistep.StateBag) {}
|