Commit 7495c772 by Serge Hallyn Committed by Stéphane Graber

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

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