confile: config_haltsignal()

parent f2e539b3
......@@ -1527,6 +1527,9 @@ static int config_haltsignal(const char *key, const char *value,
{
int sig_n = sig_parse(value);
if (config_value_empty(value))
return 0;
if (sig_n < 0)
return -1;
lxc_conf->haltsignal = sig_n;
......
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