59 lines
1.7 KiB
Go
59 lines
1.7 KiB
Go
package arm
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/packer/builder/azure/common"
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
type StepPowerOffCompute struct {
|
|
client *AzureClient
|
|
powerOff func(resourceGroupName string, computeName string, cancelCh <-chan struct{}) error
|
|
say func(message string)
|
|
error func(e error)
|
|
}
|
|
|
|
func NewStepPowerOffCompute(client *AzureClient, ui packer.Ui) *StepPowerOffCompute {
|
|
var step = &StepPowerOffCompute{
|
|
client: client,
|
|
say: func(message string) { ui.Say(message) },
|
|
error: func(e error) { ui.Error(e.Error()) },
|
|
}
|
|
|
|
step.powerOff = step.powerOffCompute
|
|
return step
|
|
}
|
|
|
|
func (s *StepPowerOffCompute) powerOffCompute(resourceGroupName string, computeName string, cancelCh <-chan struct{}) error {
|
|
_, errChan := s.client.PowerOff(resourceGroupName, computeName, cancelCh)
|
|
|
|
err := <-errChan
|
|
if err != nil {
|
|
s.say(s.client.LastError.Error())
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s *StepPowerOffCompute) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
|
s.say("Powering off machine ...")
|
|
|
|
var resourceGroupName = state.Get(constants.ArmResourceGroupName).(string)
|
|
var computeName = state.Get(constants.ArmComputeName).(string)
|
|
|
|
s.say(fmt.Sprintf(" -> ResourceGroupName : '%s'", resourceGroupName))
|
|
s.say(fmt.Sprintf(" -> ComputeName : '%s'", computeName))
|
|
|
|
result := common.StartInterruptibleTask(
|
|
func() bool { return common.IsStateCancelled(state) },
|
|
func(cancelCh <-chan struct{}) error { return s.powerOff(resourceGroupName, computeName, cancelCh) })
|
|
|
|
return processInterruptibleResult(result, s.error, state)
|
|
}
|
|
|
|
func (*StepPowerOffCompute) Cleanup(multistep.StateBag) {
|
|
}
|