11 lines
225 B
Go
Raw Permalink Normal View History

2019-05-09 11:50:44 -05:00
package chroot
import (
2020-11-17 16:31:03 -08:00
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
2019-05-09 11:50:44 -05:00
)
// Cleanup is an interface that some steps implement for early cleanup.
type Cleanup interface {
CleanupFunc(multistep.StateBag) error
}