Ensure provisioning VMs are properly coloured

This commit is contained in:
Joshua Boniface 2023-09-15 15:42:46 -04:00
parent 311bb69785
commit 79d871ebc6
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ def cli_cluster_status_format_pretty(CLI_CONFIG, data):
continue continue
if state in ["start"]: if state in ["start"]:
state_colour = ansii["green"] state_colour = ansii["green"]
elif state in ["migrate", "disable"]: elif state in ["migrate", "disable", "provision"]:
state_colour = ansii["blue"] state_colour = ansii["blue"]
elif state in ["stop", "fail"]: elif state in ["stop", "fail"]:
state_colour = ansii["red"] state_colour = ansii["red"]