packer-cn/builder/osc/chroot/cleanup.go

11 lines
214 B
Go
Raw Normal View History

2019-05-09 12:50:44 -04:00
package chroot
import (
"github.com/hashicorp/packer/helper/multistep"
)
// Cleanup is an interface that some steps implement for early cleanup.
type Cleanup interface {
CleanupFunc(multistep.StateBag) error
}