Commit 1e1d1dca by Nicolas Cornu

Fix error message when cannot find an lxc-init

lxc-init has been renamed init.lxc so adapt error message Signed-off-by: 's avatarNicolas Cornu <ncornu@aldebaran.com>
parent e00f9e4e
...@@ -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