diff options
| author | Loic Guegan <loic.guegan@mailbox.org> | 2023-11-21 10:11:33 +0100 |
|---|---|---|
| committer | Loic Guegan <loic.guegan@mailbox.org> | 2023-11-21 10:11:33 +0100 |
| commit | 25b9dd8e406ed87b936ceed7c05e1bd6471e4658 (patch) | |
| tree | a625eead7d14bdf5208d57369ad992408d0b3e4d | |
| parent | 42d95fe6b9af7544720b90e4fb6d7fea35af9d68 (diff) | |
Minor changes
| -rw-r--r-- | clusterman/__main__.py | 2 |
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 ##### |
