summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clusterman/commands/frontend.py7
1 files changed, 7 insertions, 0 deletions
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])