From 2250082bb3a5db28d6d0be4c4cd5027cafd9a355 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 26 Oct 2023 17:31:05 +0200 Subject: [PATCH] Minor changes --- clusterman/commands/frontend.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/clusterman/commands/frontend.py b/clusterman/commands/frontend.py index bcd4ab7..3b38807 100644 --- a/clusterman/commands/frontend.py +++ b/clusterman/commands/frontend.py @@ -23,3 +23,10 @@ def info(): print("Last node scan: ",end="") if cache!=None and "last_scan" in CONF["cache"]: print(CONF["cache"]["last_scan"]) + else: + print("NA") + + # Plugins + print("Plugins list:") + for name in CONF["plugins"]: + print(" "+name+":\t"+CONF["plugins"][name])