Skip to content

Commit

Permalink
Fix error message when cannot find an lxc-init
Browse files Browse the repository at this point in the history
lxc-init has been renamed init.lxc so adapt error message

Signed-off-by: Nicolas Cornu <ncornu@aldebaran.com>
  • Loading branch information
Nicolas Cornu committed Aug 5, 2015
1 parent e00f9e4 commit 1e1d1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxc/execute.c
Expand Up @@ -64,7 +64,7 @@ static int execute_start(struct lxc_handler *handler, void* data)

initpath = choose_init(NULL);
if (!initpath) {
ERROR("Failed to find an lxc-init");
ERROR("Failed to find an lxc-init or init.lxc");
goto out2;
}
argv[i++] = initpath;
Expand Down

0 comments on commit 1e1d1dc

Please sign in to comment.