diff options
-rw-r--r-- | cli/src/cli-cmd-volume.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c index fddcc213f..ae2b6b2aa 100644 --- a/cli/src/cli-cmd-volume.c +++ b/cli/src/cli-cmd-volume.c @@ -67,6 +67,12 @@ out: } +void +cli_cmd_volume_create_usage () +{ + cli_out ("usage: volume create <NEW-VOLNAME> " + "[stripe <COUNT>] [replica <COUNT>] <NEW-BRICK> ..."); +} int cli_cmd_volume_create_cbk (struct cli_state *state, struct cli_cmd_word *word, @@ -86,7 +92,8 @@ cli_cmd_volume_create_cbk (struct cli_state *state, struct cli_cmd_word *word, ret = cli_cmd_volume_create_parse (words, wordcount, &options); if (ret) { - cli_out ("Command Parsing Failed"); + printf ("Command Parsing failed, "); + cli_cmd_volume_create_usage (); goto out; } |