Commit 970ab589 by Daniel Lezcano Committed by Daniel Lezcano

make undefined personality non-fatal

Just warn, do not exit fatally. Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
parent 6f1239c3
......@@ -525,11 +525,13 @@ static int config_personality(const char *key, char *value,
continue;
lxc_conf->personality = pername[i].per;
return 0;
}
ERROR("unsupported personality '%s'", value);
return -1;
WARN("unsupported personality '%s'", value);
return 0;
}
static int config_pts(const char *key, char *value, struct lxc_conf *lxc_conf)
......
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