22 lines
468 B
Go
22 lines
468 B
Go
package amazonebs
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/packer"
|
|
"log"
|
|
)
|
|
|
|
type stepProvision struct{}
|
|
|
|
func (*stepProvision) Run(state map[string]interface{}) StepAction {
|
|
comm := state["communicator"].(packer.Communicator)
|
|
hook := state["hook"].(packer.Hook)
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
log.Println("Running the provision hook")
|
|
hook.Run(packer.HookProvision, ui, comm, nil)
|
|
|
|
return StepContinue
|
|
}
|
|
|
|
func (*stepProvision) Cleanup(map[string]interface{}) {}
|