Unverified Commit e098551a by Christian Brauner Committed by Stéphane Graber

conf: clear lxc.include

parent 3287116f
...@@ -4905,6 +4905,8 @@ int lxc_clear_simple_config_item(struct lxc_conf *c, const char *key) ...@@ -4905,6 +4905,8 @@ int lxc_clear_simple_config_item(struct lxc_conf *c, const char *key)
c->monitor_unshare = 0; c->monitor_unshare = 0;
} else if (strcmp(key, "lxc.pts") == 0) { } else if (strcmp(key, "lxc.pts") == 0) {
c->pts = 0; c->pts = 0;
} else if (strcmp(key, "lxc.include") == 0) {
lxc_clear_includes(c);
} else { } else {
return -1; return -1;
} }
......
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