Minor changes

This commit is contained in:
Loïc Guégan 2023-11-21 10:11:33 +01:00
parent 42d95fe6b9
commit 25b9dd8e40

View file

@ -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 #####