Files
Packer-Cn/common/chroot/cleanup.go
T

11 lines
214 B
Go
Raw Normal View History

package chroot
2013-08-31 12:58:55 -07:00
import (
2018-01-19 16:18:44 -08:00
"github.com/hashicorp/packer/helper/multistep"
2013-08-31 12:58:55 -07:00
)
// Cleanup is an interface that some steps implement for early cleanup.
type Cleanup interface {
2013-08-31 12:58:55 -07:00
CleanupFunc(multistep.StateBag) error
}