Commit 9fd376e8 by Serge Hallyn

lxc-start: return 0 rather than error if container is already running

parent 3d8b68b1
......@@ -278,6 +278,7 @@ int main(int argc, char *argv[])
if (c->is_running(c)) {
ERROR("Container is already running.");
err = 0;
goto out;
}
/*
......
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