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/__main__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'clusterman/__main__.py') diff --git a/clusterman/__main__.py b/clusterman/__main__.py index 4980427..c133027 100644 --- a/clusterman/__main__.py +++ b/clusterman/__main__.py @@ -15,6 +15,8 @@ def main(): # Check node_cmd_scan=node_subparsers.add_parser("check") node_cmd_scan.add_argument("-t", "--timeout" ,help="Timeout", type=float) + # List + node_cmd_list=node_subparsers.add_parser("list") ##### Frontend commands ##### target_frontend = subparsers.add_parser("frontend") @@ -29,8 +31,6 @@ def main(): # Run the proper handler if args.target == "node": - print("Do node related stuff") - #node.scan("10.0.0.1","10.0.0.10") if args.command == "scan": if args.timeout: node.scan(node_cmd_scan.timeout) @@ -41,6 +41,8 @@ def main(): node.check(node_cmd_scan.timeout) else: node.check(CONF["timeout"]) + elif args.command == "list": + node.ls() else: target_node.print_help(sys.stderr) sys.exit(1) -- cgit v1.2.3