summaryrefslogtreecommitdiffstats
path: root/lib/bb/command.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-13 17:31:54 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-13 17:45:37 +0100
commit12e9d33bfae5294e3870dfd1202f63383ad05e92 (patch)
treec46577c42d681ebb992192cf9c6bd860b42be185 /lib/bb/command.py
parent1193b8d76fcb6cb87e9ec135a2514370d7dd90ac (diff)
downloadopenembedded-core-contrib-12e9d33bfae5294e3870dfd1202f63383ad05e92.tar.gz
cooker: Rename confusing 'stop' state to 'forceshutdown'
The shutdown state causes the server to finish what its doing, stop was them meant to completely stop it. It doesn't mean the server is stopped though. Renaming the current stop event for forceshutdown gives more meaning to what it actually does. The stopped namespace then becomes available to indicate a completely stopped server. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/command.py')
-rw-r--r--lib/bb/command.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bb/command.py b/lib/bb/command.py
index 3527ad03c1..641cc70619 100644
--- a/lib/bb/command.py
+++ b/lib/bb/command.py
@@ -137,13 +137,13 @@ class CommandsSync:
"""
Trigger cooker 'shutdown' mode
"""
- command.cooker.shutdown()
+ command.cooker.shutdown(False)
- def stateStop(self, command, params):
+ def stateForceShutdown(self, command, params):
"""
Stop the cooker
"""
- command.cooker.stop()
+ command.cooker.shutdown(True)
def getVariable(self, command, params):
"""