diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-10-26 17:31:05 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-10-26 17:31:05 +0200 |
| commit | 2250082bb3a5db28d6d0be4c4cd5027cafd9a355 (patch) | |
| tree | 573b25aeb04b7e658bb88de51a4f75427eb73f80 | |
| parent | f741c9863db3acbe5f35b14ba2195537c9674731 (diff) | |
Minor changes
| -rw-r--r-- | clusterman/commands/frontend.py | 7 |
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]) |
