Require criu 1.5.2 rather than 1.5.1
Docker-DCO-1.1-Signed-off-by: Ross Boucher <rboucher@gmail.com> (github: boucher)
This commit is contained in:
parent
7c138ebbee
commit
420180a10b
|
@ -281,8 +281,8 @@ func (c *linuxContainer) checkCriuVersion() error {
|
|||
return fmt.Errorf("Unable to parse the CRIU version: %s", out)
|
||||
}
|
||||
|
||||
if x*10000+y*100+z < 10501 {
|
||||
return fmt.Errorf("CRIU version must be 1.5.1 or higher")
|
||||
if x*10000+y*100+z < 10502 {
|
||||
return fmt.Errorf("CRIU version must be 1.5.2 or higher")
|
||||
}
|
||||
|
||||
return nil
|
||||
|
|
Loading…
Reference in New Issue