From fa9efe82f9ace4e3f11325e527c2d8759afc7101 Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Fri, 3 Apr 2015 10:45:01 -0700 Subject: [PATCH] Change nsinit root to /var/run/nsinit 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 922d74cc..eec064c2 100644 --- a/nsinit/main.go +++ b/nsinit/main.go @@ -13,7 +13,7 @@ func main() { app.Version = "2" app.Author = "libcontainer maintainers" app.Flags = []cli.Flag{ - cli.StringFlag{Name: "root", Value: ".", Usage: "root directory for containers"}, + cli.StringFlag{Name: "root", Value: "/var/run/nsinit", Usage: "root directory for containers"}, cli.StringFlag{Name: "log-file", Value: "", Usage: "set the log file to output logs to"}, cli.BoolFlag{Name: "debug", Usage: "enable debug output in the logs"}, }