You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/builder/amazon/instance/step_bundle_volume.go

16 lines
314 B

package instance
import (
"github.com/mitchellh/multistep"
"time"
)
type StepBundleVolume struct{}
func (s *StepBundleVolume) Run(state map[string]interface{}) multistep.StepAction {
time.Sleep(10 * time.Hour)
return multistep.ActionContinue
}
func (s *StepBundleVolume) Cleanup(map[string]interface{}) {}