podman/pkg/criu/criu.go
Adrian Reber f75065842f
Add helper function to read out CRIU version
This adds a simple CRIU version check using the vendored-in
CRIU go bindings.

Signed-off-by: Adrian Reber <areber@redhat.com>
2018-10-23 12:52:03 +02:00

20 lines
429 B
Go

package criu
import (
"github.com/checkpoint-restore/go-criu"
)
// MinCriuVersion for Podman at least CRIU 3.11 is required
const MinCriuVersion = 31100
// CheckForCriu uses CRIU's go bindings to check if the CRIU
// binary exists and if it at least the version Podman needs.
func CheckForCriu() bool {
c := criu.MakeCriu()
result, err := c.IsCriuAtLeast(MinCriuVersion)
if err != nil {
return false
}
return result
}