Commit c901bfe7 by Nicolas Cornu Committed by Stéphane Graber

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 8f000bfc
...@@ -134,7 +134,7 @@ static int execute_start(struct lxc_handler *handler, void* data) ...@@ -134,7 +134,7 @@ static int execute_start(struct lxc_handler *handler, void* data)
initpath = choose_init(); initpath = choose_init();
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