diff options
Diffstat (limited to 'clusterman/commands')
| -rw-r--r-- | clusterman/commands/node.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/clusterman/commands/node.py b/clusterman/commands/node.py index 54de67c..eb32d50 100644 --- a/clusterman/commands/node.py +++ b/clusterman/commands/node.py @@ -3,7 +3,16 @@ from clusterman.config import CONF def ls(): - print("List nodes..") + nodes_path=CONF["paths"]["nodes"] + nodes=None + if os.path.exists(nodes_path): + with open(nodes_path) as f: + nodes=json.load(f) + else: + print("Please perform a scan before") + exit(0) + for node in nodes: + print(node) def scan(timeout): |
