buildah/util.go

13 lines
277 B
Go
Raw Normal View History

package buildah
import (
"github.com/containers/storage/pkg/reexec"
)
// InitReexec is a wrapper for reexec.Init(). It should be called at
// the start of main(), and if it returns true, main() should return
// immediately.
func InitReexec() bool {
return reexec.Init()
}