mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-04 06:37:50 +00: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>
12 lines
298 B
Go
12 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()
|
|
}
|