14e44be7b0
Resolves: bz#1234220 bz#1286171 bz#1487177 bz#1524457 bz#1640573 Resolves: bz#1663557 bz#1667954 bz#1683602 bz#1686897 bz#1721355 Resolves: bz#1748865 bz#1750211 bz#1754391 bz#1759875 bz#1761531 Resolves: bz#1761932 bz#1763124 bz#1763129 bz#1764091 bz#1775637 Resolves: bz#1776901 bz#1781550 bz#1781649 bz#1781710 bz#1783232 Resolves: bz#1784211 bz#1784415 bz#1786516 bz#1786681 bz#1787294 Resolves: bz#1787310 bz#1787331 bz#1787994 bz#1790336 bz#1792873 Resolves: bz#1794663 bz#1796814 bz#1804164 bz#1810924 bz#1815434 Resolves: bz#1836099 bz#1837467 bz#1837926 bz#1838479 bz#1839137 Resolves: bz#1844359 Signed-off-by: Rinku Kothiya <rkothiya@redhat.com>
61 lines
2.3 KiB
Diff
61 lines
2.3 KiB
Diff
From de31f2b0cb09a59941892c9981cb8a8b3aced9ec Mon Sep 17 00:00:00 2001
|
|
From: kshithijiyer <kshithij.ki@gmail.com>
|
|
Date: Tue, 24 Dec 2019 13:02:21 +0530
|
|
Subject: [PATCH 407/449] [geo-rep] Improving help message in
|
|
schedule_georep.py.in
|
|
|
|
SLAVE positional argument doesn't provide a clear
|
|
picture of what it is when compared to mastervol and slavevol
|
|
in schedule_georep.py.in. It would be better if we change it to
|
|
something like "Slave hostame (<username>@SLAVEHOST or SLAVEHOST)"
|
|
|
|
Present:
|
|
----------
|
|
positional arguments:
|
|
mastervol Master Volume Name
|
|
SLAVE SLAVEHOST or root@SLAVEHOST or user@SLAVEHOST
|
|
slavevol Slave Volume Name
|
|
|
|
Suggested:
|
|
-----------
|
|
positional arguments:
|
|
mastervol Master Volume Name
|
|
SLAVE Slave hostname (<username>@SLAVEHOST or SLAVEHOST)
|
|
slavevol Slave Volume Name
|
|
|
|
Backport of:
|
|
>Upstream Patch: https://review.gluster.org/#/c/glusterfs/+/23919/
|
|
>fixes: bz#1786276
|
|
>Change-Id: I73d52247997d623f77d55e51cbb6eccc08eb95ff
|
|
>Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
|
|
|
|
BUG: 1787994
|
|
Change-Id: I73d52247997d623f77d55e51cbb6eccc08eb95ff
|
|
Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
|
|
Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
|
|
Reviewed-on: https://code.engineering.redhat.com/gerrit/202454
|
|
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
---
|
|
extras/geo-rep/schedule_georep.py.in | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/extras/geo-rep/schedule_georep.py.in b/extras/geo-rep/schedule_georep.py.in
|
|
index f29ae02..ac93716 100644
|
|
--- a/extras/geo-rep/schedule_georep.py.in
|
|
+++ b/extras/geo-rep/schedule_georep.py.in
|
|
@@ -459,8 +459,8 @@ if __name__ == "__main__":
|
|
description=__doc__)
|
|
parser.add_argument("mastervol", help="Master Volume Name")
|
|
parser.add_argument("slave",
|
|
- help="SLAVEHOST or root@SLAVEHOST "
|
|
- "or user@SLAVEHOST",
|
|
+ help="Slave hostname "
|
|
+ "(<username>@SLAVEHOST or SLAVEHOST)",
|
|
metavar="SLAVE")
|
|
parser.add_argument("slavevol", help="Slave Volume Name")
|
|
parser.add_argument("--interval", help="Interval in Seconds. "
|
|
--
|
|
1.8.3.1
|
|
|