|
|
9f5ccc |
From 5e7a2ad35a174d6d0ee5ed58a3e27955e85aa47c Mon Sep 17 00:00:00 2001
|
|
|
9f5ccc |
From: kshithijiyer <kshithij.ki@gmail.com>
|
|
|
9f5ccc |
Date: Mon, 24 Jun 2019 20:08:48 +0530
|
|
|
9f5ccc |
Subject: [PATCH 321/335] Adding white spaces to description of set group.
|
|
|
9f5ccc |
|
|
|
9f5ccc |
The description of set group is missing spaces which
|
|
|
9f5ccc |
leads to the description look like:
|
|
|
9f5ccc |
volume set <VOLNAME> group <GROUP> - This option can be used for
|
|
|
9f5ccc |
setting multiple pre-defined volume optionswhere group_name is a
|
|
|
9f5ccc |
file under /var/lib/glusterd/groups containing onekey, value pair
|
|
|
9f5ccc |
per line
|
|
|
9f5ccc |
|
|
|
9f5ccc |
Instead of:
|
|
|
9f5ccc |
volume set <VOLNAME> group <GROUP> - This option can be used for
|
|
|
9f5ccc |
setting multiple pre-defined volume options where group_name is a
|
|
|
9f5ccc |
file under /var/lib/glusterd/groups containing one key value
|
|
|
9f5ccc |
pair per line
|
|
|
9f5ccc |
|
|
|
9f5ccc |
> upstream patch: https://review.gluster.org/#/c/glusterfs/+/22934/
|
|
|
9f5ccc |
> Fixes: bz#1723455
|
|
|
9f5ccc |
> Change-Id: I4957988c0c1f35f043db3f64089c049193e60e8f
|
|
|
9f5ccc |
> Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
|
|
|
9f5ccc |
|
|
|
9f5ccc |
BUG: 1724021
|
|
|
9f5ccc |
Change-Id: I4957988c0c1f35f043db3f64089c049193e60e8f
|
|
|
9f5ccc |
Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
|
|
|
9f5ccc |
Reviewed-on: https://code.engineering.redhat.com/gerrit/185756
|
|
|
9f5ccc |
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
|
9f5ccc |
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
|
9f5ccc |
---
|
|
|
9f5ccc |
cli/src/cli-cmd-volume.c | 8 ++++----
|
|
|
9f5ccc |
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
9f5ccc |
|
|
|
9f5ccc |
diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c
|
|
|
9f5ccc |
index 6b958bd..66beb1b 100644
|
|
|
9f5ccc |
--- a/cli/src/cli-cmd-volume.c
|
|
|
9f5ccc |
+++ b/cli/src/cli-cmd-volume.c
|
|
|
9f5ccc |
@@ -3393,10 +3393,10 @@ struct cli_cmd volume_cmds[] = {
|
|
|
9f5ccc |
{"volume set <VOLNAME> <KEY> <VALUE>", cli_cmd_volume_set_cbk,
|
|
|
9f5ccc |
"set options for volume <VOLNAME>"},
|
|
|
9f5ccc |
|
|
|
9f5ccc |
- {"volume set <VOLNAME> group <GROUP>", cli_cmd_volume_set_cbk,
|
|
|
9f5ccc |
- "This option can be used for setting multiple pre-defined volume options"
|
|
|
9f5ccc |
- "where group_name is a file under /var/lib/glusterd/groups containing one"
|
|
|
9f5ccc |
- "key, value pair per line"},
|
|
|
9f5ccc |
+ {"volume set <VOLNAME> group <GROUP>", cli_cmd_volume_set_cbk,
|
|
|
9f5ccc |
+ "This option can be used for setting multiple pre-defined volume options "
|
|
|
9f5ccc |
+ "where group_name is a file under /var/lib/glusterd/groups containing one "
|
|
|
9f5ccc |
+ "key value pair per line"},
|
|
|
9f5ccc |
|
|
|
9f5ccc |
{"volume log <VOLNAME> rotate [BRICK]", cli_cmd_log_rotate_cbk,
|
|
|
9f5ccc |
"rotate the log file for corresponding volume/brick"},
|
|
|
9f5ccc |
--
|
|
|
9f5ccc |
1.8.3.1
|
|
|
9f5ccc |
|