summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2023-11-21 10:11:33 +0100
committerLoic Guegan <loic.guegan@mailbox.org>2023-11-21 10:11:33 +0100
commit25b9dd8e406ed87b936ceed7c05e1bd6471e4658 (patch)
treea625eead7d14bdf5208d57369ad992408d0b3e4d
parent42d95fe6b9af7544720b90e4fb6d7fea35af9d68 (diff)
Minor changes
-rw-r--r--clusterman/__main__.py2
1 files changed, 1 insertions, 1 deletions
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 #####