From: Michael Hanselmann Date: Fri, 20 Jan 2012 18:30:52 +0000 (+0100) Subject: gnt-cluster command: Add option to prepend node name to output X-Git-Tag: v2.6.0beta1~368 X-Git-Url: https://code.grnet.gr/git/ganeti-local/commitdiff_plain/a24aed2a88b6ae07bde55e1ae865080c8c75ceb0 gnt-cluster command: Add option to prepend node name to output With this patch a new option (“-M”, like dsh) is added to “gnt-cluster command” to prepend the node name to all output lines. $ gnt-cluster command -M uname -a | grep Linux node18.example.com: Linux node18.example.com [...] node19.example.com: Linux node19.example.com [...] Signed-off-by: Michael Hanselmann Reviewed-by: Iustin Pop --- diff --git a/lib/client/gnt_cluster.py b/lib/client/gnt_cluster.py index f462504..4350f16 100644 --- a/lib/client/gnt_cluster.py +++ b/lib/client/gnt_cluster.py @@ -52,6 +52,10 @@ GROUPS_OPT = cli_option("--groups", default=False, action="store_true", dest="groups", help="Arguments are node groups instead of nodes") +SHOW_MACHINE_OPT = cli_option("-M", "--show-machine-names", default=False, + action="store_true", + help="Show machine name for every line in output") + _EPO_PING_INTERVAL = 30 # 30 seconds between pings _EPO_PING_TIMEOUT = 1 # 1 second _EPO_REACHABLE_TIMEOUT = 15 * 60 # 15 minutes @@ -529,8 +533,12 @@ def RunClusterCommand(opts, args): for name in nodes: result = srun.Run(name, "root", command) ToStdout("------------------------------------------------") - ToStdout("node: %s", name) - ToStdout("%s", result.output) + if opts.show_machine_names: + for line in result.output.splitlines(): + ToStdout("%s: %s", name, line) + else: + ToStdout("node: %s", name) + ToStdout("%s", result.output) ToStdout("return code = %s", result.exit_code) return 0 @@ -1500,7 +1508,7 @@ commands = { "[-n node...] ", "Copies a file to all (or only some) nodes"), "command": ( RunClusterCommand, [ArgCommand(min=1)], - [NODE_LIST_OPT, NODEGROUP_OPT], + [NODE_LIST_OPT, NODEGROUP_OPT, SHOW_MACHINE_OPT], "[-n node...] ", "Runs a command on all (or only some) nodes"), "info": ( ShowClusterConfig, ARGS_NONE, [ROMAN_OPT], diff --git a/man/gnt-cluster.rst b/man/gnt-cluster.rst index 34d517f..eaa41a8 100644 --- a/man/gnt-cluster.rst +++ b/man/gnt-cluster.rst @@ -44,7 +44,7 @@ interpreted as stdin. COMMAND ~~~~~~~ -**command** [-n *node*] [-g *group*] {*command*} +**command** [-n *node*] [-g *group*] [-M] {*command*} Executes a command on all nodes. If the option ``-n`` is not given, the command will be executed on all nodes, otherwise it will be @@ -58,6 +58,9 @@ group, e.g.:: # gnt-cluster command -g default date +The ``-M`` option can be used to prepend the node name to all output +lines. + The command is executed serially on the selected nodes. If the master node is present in the list, the command will be executed last on the master. Regarding the other nodes, the execution order