packer-cn/builder/alicloud/ecs/packer_helper.go

23 lines
489 B
Go
Raw Normal View History

package ecs
import (
"fmt"
2017-06-01 20:14:51 -04:00
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
)
func message(state multistep.StateBag, module string) {
_, cancelled := state.GetOk(multistep.StateCancelled)
_, halted := state.GetOk(multistep.StateHalted)
ui := state.Get("ui").(packer.Ui)
if cancelled || halted {
2017-06-01 22:33:12 -04:00
ui.Say(fmt.Sprintf("Deleting %s because of cancellation or error...", module))
} else {
2017-06-01 22:33:12 -04:00
ui.Say(fmt.Sprintf("Cleaning up '%s'", module))
}
}