Minor changes

This commit is contained in:
Loïc Guégan 2023-11-21 10:08:28 +01:00
parent b69e0a12c1
commit 42d95fe6b9

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")
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: