github.com/mmcquillan/packer@v1.1.1-0.20171009221028-c85cf0483a5d/builder/amazon/chroot/cleanup.go (about)

     1  package chroot
     2  
     3  import (
     4  	"github.com/mitchellh/multistep"
     5  )
     6  
     7  // Cleanup is an interface that some steps implement for early cleanup.
     8  type Cleanup interface {
     9  	CleanupFunc(multistep.StateBag) error
    10  }