From 20d4f6f28fcaafe8b10bf82e5302180d6d3bc115 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 26 Oct 2023 14:28:11 +0200 Subject: Minor changes --- clusterman/commands/node.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'clusterman/commands/node.py') 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): -- cgit v1.2.3