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