summaryrefslogtreecommitdiffstats
path: root/cli/src/cli-cmd-log.c
diff options
context:
space:
mode:
authorKaushik BV <kaushikbv@gluster.com>2010-08-25 01:58:23 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-08-25 02:08:43 -0700
commita0c874f09e294ec75a18a5436bd01eaa97f22f81 (patch)
treebe08d4601d05b035b17aa5e5d630255cb7fb3660 /cli/src/cli-cmd-log.c
parent5ad84d3decb201e587cca5de7dd0c2c13e6419f6 (diff)
Help Added to the Gluster-CLI for all sub commands (some deletions in the old patch)
Signed-off-by: Kaushik BV <kaushikbv@gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com> BUG: 1156 (gluster --help should display all the options) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1156
Diffstat (limited to 'cli/src/cli-cmd-log.c')
-rw-r--r--cli/src/cli-cmd-log.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/cli/src/cli-cmd-log.c b/cli/src/cli-cmd-log.c
index 1b71f2f928f..e67f28091e8 100644
--- a/cli/src/cli-cmd-log.c
+++ b/cli/src/cli-cmd-log.c
@@ -37,6 +37,9 @@ extern struct rpc_clnt *global_rpc;
extern rpc_clnt_prog_t *cli_rpc_prog;
+int cli_cmd_log_help_cbk (struct cli_state *state, struct cli_cmd_word *in_word,
+ const char **words, int wordcount);
+
int
cli_cmd_log_cbk (struct cli_state *state, struct cli_cmd_word *word,
const char **words, int wordcount)
@@ -49,10 +52,32 @@ struct cli_cmd cli_log_cmds[] = {
{ "log <VOLNAME> ...",
cli_cmd_log_cbk,
"set log level for <VOLNAME>"},
+
+ { "log --help",
+ cli_cmd_log_help_cbk,
+ "help command for log"},
{ NULL, NULL, NULL }
};
+int
+cli_cmd_log_help_cbk (struct cli_state *state, struct cli_cmd_word *in_word,
+ const char **words, int wordcount)
+{
+ struct cli_cmd *cmd = NULL;
+
+
+
+ for (cmd = cli_log_cmds; cmd->pattern; cmd++)
+ cli_out ("%s - %s", cmd->pattern, cmd->desc);
+
+
+
+ if (!state->rl_enabled)
+ exit (0);
+
+ return 0;
+}
int
cli_cmd_log_register (struct cli_state *state)