From 25b9dd8e406ed87b936ceed7c05e1bd6471e4658 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Tue, 21 Nov 2023 10:11:33 +0100 Subject: [PATCH] Minor changes --- clusterman/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clusterman/__main__.py b/clusterman/__main__.py index 98dff99..83a559b 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", action='store_false') + node_cmd_list.add_argument("-l", "--login" ,help="Use ssh username and password", action='store_true',default=False) node_cmd_list.add_argument("cmd",help="Command to run",nargs=argparse.REMAINDER) ##### Frontend commands #####