Commit 061ed04e by Stéphane Graber

Merge pull request #614 from alkino/master

Fix error message when cannot find an lxc-init
parents e00f9e4e 1e1d1dca
...@@ -64,7 +64,7 @@ static int execute_start(struct lxc_handler *handler, void* data) ...@@ -64,7 +64,7 @@ static int execute_start(struct lxc_handler *handler, void* data)
initpath = choose_init(NULL); initpath = choose_init(NULL);
if (!initpath) { if (!initpath) {
ERROR("Failed to find an lxc-init"); ERROR("Failed to find an lxc-init or init.lxc");
goto out2; goto out2;
} }
argv[i++] = initpath; argv[i++] = initpath;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment