Commit 05e5d7dc by Stéphane Graber

Revert "lxc-start: fix the container leak when daemonize"

This reverts commit c3f0f139. Done as Serge Hallyn's request: Nacked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
parent ecc357ca
......@@ -632,10 +632,12 @@ reboot:
goto reboot;
}
if (daemonize)
if (daemonize) {
lxc_container_put(c);
return (ret == 0 ? true : false);
exit (ret == 0 ? true : false);
} else {
return (ret == 0 ? true : false);
}
}
/*
......
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