start: log closing cmd socket and STOPPED state

parent 66fe662e
...@@ -762,12 +762,19 @@ void lxc_fini(const char *name, struct lxc_handler *handler) ...@@ -762,12 +762,19 @@ void lxc_fini(const char *name, struct lxc_handler *handler)
*/ */
close(handler->conf->maincmd_fd); close(handler->conf->maincmd_fd);
handler->conf->maincmd_fd = -1; handler->conf->maincmd_fd = -1;
TRACE("Closed command socket");
/* This function will try to connect to the legacy lxc-monitord state /* This function will try to connect to the legacy lxc-monitord
* server and only exists for backwards compatibility. * state server and only exists for backwards compatibility.
*/ */
lxc_monitor_send_state(name, STOPPED, handler->lxcpath); lxc_monitor_send_state(name, STOPPED, handler->lxcpath);
/* The command socket is closed so no one can acces the command
* socket anymore so there's no need to lock it.
*/
handler->state = STOPPED;
TRACE("Set container state to \"STOPPED\"");
if (run_lxc_hooks(name, "post-stop", handler->conf, handler->lxcpath, NULL)) { if (run_lxc_hooks(name, "post-stop", handler->conf, handler->lxcpath, NULL)) {
ERROR("Failed to run lxc.hook.post-stop for container \"%s\".", name); ERROR("Failed to run lxc.hook.post-stop for container \"%s\".", name);
if (handler->conf->reboot) { if (handler->conf->reboot) {
......
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