summaryrefslogtreecommitdiffstats
path: root/cli/src/cli-cmd-misc.c
diff options
context:
space:
mode:
authorPranith Kumar K <pranithk@gluster.com>2010-09-07 04:03:31 +0000
committerVijay Bellur <vijay@dev.gluster.com>2010-09-07 07:45:50 -0700
commitcb0352cd4f4748ee6e33bc64d2e2b09d09fe20eb (patch)
tree933e86e16cce120e4c3197668b310c36c1feade8 /cli/src/cli-cmd-misc.c
parent406e42973feeae6b78626f2db19971dc8f79c25f (diff)
cli: add script mode for gluster
Signed-off-by: Pranith Kumar K <pranithk@gluster.com> Signed-off-by: Vijay Bellur <vijay@dev.gluster.com> BUG: 1554 (add script mode for gluster) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1554
Diffstat (limited to 'cli/src/cli-cmd-misc.c')
-rw-r--r--cli/src/cli-cmd-misc.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/cli/src/cli-cmd-misc.c b/cli/src/cli-cmd-misc.c
index 306a7628faa..7833456b730 100644
--- a/cli/src/cli-cmd-misc.c
+++ b/cli/src/cli-cmd-misc.c
@@ -61,8 +61,10 @@ cli_cmd_display_help (struct cli_state *state, struct cli_cmd_word *in_word,
for (cmd = cli_probe_cmds; cmd->pattern; cmd++)
cli_out ("%s - %s", cmd->pattern, cmd->desc);
- for (cmd = cli_misc_cmds; cmd->pattern; cmd++)
- cli_out ("%s - %s", cmd->pattern, cmd->desc);
+ for (cmd = cli_misc_cmds; cmd->pattern; cmd++) {
+ if (cmd->cbk)
+ cli_out ("%s - %s", cmd->pattern, cmd->desc);
+ }
if (!state->rl_enabled)
exit (0);
@@ -79,6 +81,10 @@ struct cli_cmd cli_misc_cmds[] = {
cli_cmd_display_help,
"display command options"},
+ { "mode script",
+ NULL,
+ "assign gluster execution mode"},
+
{ NULL, NULL, NULL }
};