From 42d95fe6b9af7544720b90e4fb6d7fea35af9d68 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Tue, 21 Nov 2023 10:08:28 +0100 Subject: [PATCH] Minor changes --- clusterman/__main__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clusterman/__main__.py b/clusterman/__main__.py index 738721c..98dff99 100644 --- a/clusterman/__main__.py +++ b/clusterman/__main__.py @@ -21,7 +21,7 @@ def main(): # Exec node_cmd_list=node_subparsers.add_parser("exec") node_cmd_list.add_argument("-g", "--group" ,help="Group to run the command on") - node_cmd_list.add_argument("-l", "--login" ,help="Use ssh username and password") + node_cmd_list.add_argument("-l", "--login" ,help="Use ssh username and password", action='store_false') node_cmd_list.add_argument("cmd",help="Command to run",nargs=argparse.REMAINDER) ##### Frontend commands ##### @@ -61,7 +61,6 @@ def main(): node.ls() elif args.command == "exec": use_key=not args.login - exit(0) if args.group: node.exec(args.cmd,args.group,use_key) else: