From 406f32a774e3011f2e5237e258f196f51aab030a Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Thu, 12 Mar 2015 22:51:23 -0700 Subject: [PATCH] Set default criu binary Signed-off-by: Michael Crosby --- nsinit/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsinit/main.go b/nsinit/main.go index a035a5b97..c787acc47 100644 --- a/nsinit/main.go +++ b/nsinit/main.go @@ -16,7 +16,7 @@ func main() { cli.BoolFlag{Name: "debug", Usage: "enable debug output in the logs"}, cli.StringFlag{Name: "root", Value: "/var/run/nsinit", Usage: "root directory for containers"}, cli.StringFlag{Name: "log-file", Usage: "set the log file to output logs to"}, - cli.StringFlag{Name: "criu", Usage: "path to the criu binary for checkpoint and restore"}, + cli.StringFlag{Name: "criu", Value: "criu", Usage: "path to the criu binary for checkpoint and restore"}, } app.Commands = []cli.Command{ checkpointCommand,