From 01fd3c2d66f88172027d4cf38232e358ac0ff3a5 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 26 Oct 2023 20:19:08 +0200 Subject: [PATCH] Minor changes --- clusterman/commands/frontend.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/clusterman/commands/frontend.py b/clusterman/commands/frontend.py index 3b38807..26d4409 100644 --- a/clusterman/commands/frontend.py +++ b/clusterman/commands/frontend.py @@ -19,6 +19,14 @@ def info(): print("Node count: ",end="") print("NA") if nodes==None else print(len(nodes)) + # Groups + print("Node groups: ",end="") + if len(CONF["cluster"]["groups"]) > 0: + print(",".join(CONF["cluster"]["groups"].keys())) + else: + print("NA") + + # Cache print("Last node scan: ",end="") if cache!=None and "last_scan" in CONF["cache"]: