Was getting weird behavior... see https://groups.google.com/d/msg/golang-nuts/a1kymwSVt2M/FwcCuBl1_48
7 lines
158 B
Go
7 lines
158 B
Go
package chroot
|
|
|
|
// Cleanup is an interface that some steps implement for early cleanup.
|
|
type Cleanup interface {
|
|
CleanupFunc(map[string]interface{}) error
|
|
}
|