packer-cn/builder/amazon/instance/step_bundle_volume.go

16 lines
314 B
Go
Raw Normal View History

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{}) {}