diff options
author | Avra Sengupta <asengupt@redhat.com> | 2014-02-07 06:04:23 +0000 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-02-07 18:59:33 -0800 |
commit | 7903c55a0d488f93790f5e80105f5252b88f32af (patch) | |
tree | 4c1c3d9949f39ae67fde403bfc549559cc4cf522 /geo-replication/src | |
parent | 13b68bc693e92378f78f452763a6097bf1755072 (diff) |
gverify: Correcting variable names
Change-Id: I851a50e0ebb7554b821fb591375bb6ebd6240ade
BUG: 1036539
Signed-off-by: Avra Sengupta <asengupt@redhat.com>
Reviewed-on: http://review.gluster.org/6939
Reviewed-by: Venky Shankar <vshankar@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'geo-replication/src')
-rwxr-xr-x | geo-replication/src/gverify.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/geo-replication/src/gverify.sh b/geo-replication/src/gverify.sh index c9b7acb301d..ef31f527afd 100755 --- a/geo-replication/src/gverify.sh +++ b/geo-replication/src/gverify.sh @@ -128,12 +128,12 @@ function main() slave_version=$(echo $slave_data | cut -f3 -d':'); slave_no_of_files=$(echo $slave_data | cut -f4 -d':'); - if [[ "x$master_size" = "x" || "x$master_version" = "x" || "$master_size" -eq "0" ]]; then + if [[ "x$master_disk_size" = "x" || "x$master_version" = "x" || "$master_disk_size" -eq "0" ]]; then echo "FORCE_BLOCKER|Unable to fetch master volume details. Please check the master cluster and master volume." > $log_file; exit 1; fi; - if [[ "x$slave_size" = "x" || "x$slave_version" = "x" || "$slave_size" -eq "0" ]]; then + if [[ "x$slave_disk_size" = "x" || "x$slave_version" = "x" || "$slave_disk_size" -eq "0" ]]; then echo "FORCE_BLOCKER|Unable to fetch slave volume details. Please check the slave cluster and slave volume." > $log_file; exit 1; fi; |