2013-07-30 20:56:42 -04:00
|
|
|
package chroot
|
|
|
|
|
2013-08-31 15:58:55 -04:00
|
|
|
import (
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
)
|
|
|
|
|
2013-07-30 20:56:42 -04:00
|
|
|
// Cleanup is an interface that some steps implement for early cleanup.
|
|
|
|
type Cleanup interface {
|
2013-08-31 15:58:55 -04:00
|
|
|
CleanupFunc(multistep.StateBag) error
|
2013-07-30 20:56:42 -04:00
|
|
|
}
|