mirror of
https://github.com/containers/podman.git
synced 2025-12-12 01:38:04 +08:00
By proxy by vendoring containers/common. Previously, a "dangling" image was an untagged image; just a described in the Docker docs. The definition of dangling has now been refined to an untagged image without children to be compatible with Docker. Further update a redundant image-prune test. Fixes: #10998 Fixes: #10832 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
13 lines
298 B
Go
13 lines
298 B
Go
package imagebuildah
|
|
|
|
import (
|
|
"github.com/containers/buildah"
|
|
)
|
|
|
|
// InitReexec is a wrapper for buildah.InitReexec(). It should be called at
|
|
// the start of main(), and if it returns true, main() should return
|
|
// successfully immediately.
|
|
func InitReexec() bool {
|
|
return buildah.InitReexec()
|
|
}
|