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])