diff --git a/client-common/node.py b/client-common/node.py index 93da938a..40208750 100644 --- a/client-common/node.py +++ b/client-common/node.py @@ -256,6 +256,8 @@ def getOutputColours(node_information): daemon_state_colour = ansiprint.green() elif node_information['daemon_state'] == 'stop': daemon_state_colour = ansiprint.red() + elif node_information['daemon_state'] == 'shutdown': + daemon_state_colour = ansiprint.yellow() elif node_information['daemon_state'] == 'init': daemon_state_colour = ansiprint.yellow() elif node_information['daemon_state'] == 'dead':