mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +02:00
Minor changes
This commit is contained in:
parent
b69e0a12c1
commit
42d95fe6b9
1 changed files with 1 additions and 2 deletions
|
@ -21,7 +21,7 @@ def main():
|
||||||
# Exec
|
# Exec
|
||||||
node_cmd_list=node_subparsers.add_parser("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("-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)
|
node_cmd_list.add_argument("cmd",help="Command to run",nargs=argparse.REMAINDER)
|
||||||
|
|
||||||
##### Frontend commands #####
|
##### Frontend commands #####
|
||||||
|
@ -61,7 +61,6 @@ def main():
|
||||||
node.ls()
|
node.ls()
|
||||||
elif args.command == "exec":
|
elif args.command == "exec":
|
||||||
use_key=not args.login
|
use_key=not args.login
|
||||||
exit(0)
|
|
||||||
if args.group:
|
if args.group:
|
||||||
node.exec(args.cmd,args.group,use_key)
|
node.exec(args.cmd,args.group,use_key)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue